Advertisement
Guest User

lol

a guest
Mar 31st, 2014
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.52 KB | None | 0 0
  1. prontera,156,174,5 script Rental Guy 822,{
  2. mes "Hello, i can exchange your tickets for rentals and or expand the time of your rental item";
  3. mes "However, i can only do it for 1 day per ticket with a limit of 10 tickets or 10 days";
  4. next;
  5. mes "Firstly, please select how many days do you wish to expand your item, if you want to expand, if not select the last option.";
  6. mes "Note, tickets will be deleted on selection so please pick wise, also note that to expand the duration of an item you will need the item with you";
  7. next;
  8. menu "1 day",L_1,"2 days",L_2,"3 days",L_3,"4 days",L_4,"5 days",L_5,"6 days",L_6,"7 days",L_7,"8 days",L_8,"9 days",L_9,"10 days",L_10,"Rent an item for first time",L_rent,"cancel",L_cancel;
  9. next;
  10. L_1:
  11. if(countitem(24042)<1)goto no_item;
  12. delitem 24042,1;
  13. mes "Allright, now select an item";
  14. menu "Sleipnir",L_S1,"Meginghard",L_M1,"Asprika",L_A1,"Brisingamen",L_B1,"Mjolnir",L_Mj1;
  15. next;
  16. L_S1:
  17. if(countitem(2410)<1)goto no_equip;
  18. delitem 2410,1;
  19. rentitem 2410,86400;
  20. next;
  21. close;
  22. L_M1:
  23. if(countitem(2629)<1)goto no_equip;
  24. delitem 2629,1;
  25. rentitem 2629,86400;
  26. next;
  27. close;
  28. L_A1:
  29. if(countitem(2541)<1)goto no_equip;
  30. delitem 2541,1;
  31. rentitem 2541,86400;
  32. next;
  33. close;
  34. L_B1:
  35. if(countitem(2630)<1)goto no_equip;
  36. delitem 2630,1;
  37. rentitem 2630,86400;
  38. next;
  39. close;
  40. L_Mj1:
  41. if(countitem(1530)<1)goto no_equip;
  42. delitem 1530,1;
  43. rentitem 1530,86400;
  44. next;
  45. close;
  46. L_2:
  47. if(countitem(24042)<2)goto no_item;
  48. delitem 24042,2;
  49. mes "Allright, now select an item";
  50. menu "Sleipnir",L_S2,"Meginghard",L_M2,"Asprika",L_A2,"Brisingamen",L_B2,"Mjolnir",L_Mj2;
  51. next;
  52. L_S2:
  53. if(countitem(2410)<1)goto no_equip;
  54. delitem 2410,1;
  55. rentitem 2410,172800;
  56. next;
  57. close;
  58. L_M2:
  59. if(countitem(2629)<1)goto no_equip;
  60. delitem 2629,1;
  61. rentitem 2629,172800;
  62. next;
  63. close;
  64. L_A2:
  65. if(countitem(2541)<1)goto no_equip;
  66. delitem 2541,1;
  67. rentitem 2541,172800;
  68. next;
  69. close;
  70. L_B2:
  71. if(countitem(2630)<1)goto no_equip;
  72. delitem 2630,1;
  73. rentitem 2630,172800;
  74. next;
  75. close;
  76. L_Mj2:
  77. if(countitem(1530)<1)goto no_equip;
  78. delitem 1530,1;
  79. rentitem 1530,172800;
  80. next;
  81. close;
  82. L_3:
  83. if(countitem(24042)<3)goto no_item;
  84. delitem 24042,3;
  85. mes "Allright, now select an item";
  86. menu "Sleipnir",L_S3,"Meginghard",L_M3,"Asprika",L_A3,"Brisingamen",L_B3,"Mjolnir",L_Mj3;
  87. L_S3:
  88. if(countitem(2410)<1)goto no_equip;
  89. delitem 2410,1;
  90. rentitem 2410,259200;
  91. next;
  92. close;
  93. L_M3:
  94. if(countitem(2629)<1)goto no_equip;
  95. delitem 2629,1;
  96. rentitem 2629,259200;
  97. next;
  98. close;
  99. L_A3:
  100. if(countitem(2541)<1)goto no_equip;
  101. delitem 2541,1;
  102. rentitem 2541,259200;
  103. next;
  104. close;
  105. L_B3:
  106. if(countitem(2630)<1)goto no_equip;
  107. delitem 2630,1;
  108. rentitem 2630,259200;
  109. next;
  110. close;
  111. L_Mj3:
  112. if(countitem(1530)<1)goto no_equip;
  113. delitem 1530,1;
  114. rentitem 1530,259200;
  115. next;
  116. close;
  117. L_4:
  118. if(countitem(24042)<4)goto no_item;
  119. delitem 24042,4;
  120. mes "Allright, now select an item";
  121. menu "Sleipnir",L_S4,"Meginghard",L_M4,"Asprika",L_A4,"Brisingamen",L_B4,"Mjolnir",L_Mj4;
  122. next;
  123. L_S4:
  124. if(countitem(2410)<1)goto no_equip;
  125. delitem 2410,1;
  126. rentitem 2410,345600;
  127. next;
  128. close;
  129. L_M4:
  130. if(countitem(2629)<1)goto no_equip;
  131. delitem 2629,1;
  132. rentitem 2629,345600;
  133. next;
  134. close;
  135. L_A4:
  136. if(countitem(2541)<1)goto no_equip;
  137. delitem 2541,1;
  138. rentitem 2541,345600;
  139. next;
  140. close;
  141. L_B4:
  142. if(countitem(2630)<1)goto no_equip;
  143. delitem 2630,1;
  144. rentitem 2630,345600;
  145. next;
  146. close;
  147. L_Mj4:
  148. if(countitem(1530)<1)goto no_equip;
  149. delitem 1530,1;
  150. rentitem 1530,345600;
  151. next;
  152. close;
  153. L_5:
  154. if(countitem(24042)<5)goto no_item;
  155. delitem 24042,5;
  156. mes "Allright, now select an item";
  157. menu "Sleipnir",L_S5,"Meginghard",L_M5,"Asprika",L_A5,"Brisingamen",L_B5,"Mjolnir",L_Mj5;
  158. next;
  159. L_S5:
  160. if(countitem(2410)<1)goto no_equip;
  161. delitem 2410,1;
  162. rentitem 2410,432000;
  163. next;
  164. close;
  165. L_M5:
  166. if(countitem(2629)<1)goto no_equip;
  167. delitem 2629,1;
  168. rentitem 2629,432000;
  169. next;
  170. close;
  171. L_A5:
  172. if(countitem(2541)<1)goto no_equip;
  173. delitem 2541,1;
  174. rentitem 2541,432000;
  175. next;
  176. close;
  177. L_B5:
  178. if(countitem(2630)<1)goto no_equip;
  179. delitem 2630,1;
  180. rentitem 2630,432000;
  181. next;
  182. close;
  183. L_Mj5:
  184. if(countitem(1530)<1)goto no_equip;
  185. delitem 1530,1;
  186. rentitem 1530,432000;
  187. next;
  188. close;
  189. L_6:
  190. if(countitem(24042)<6)goto no_item;
  191. delitem 24042,6;
  192. mes "Allright, now select an item";
  193. menu "Sleipnir",L_S6,"Meginghard",L_M6,"Asprika",L_A6,"Brisingamen",L_B6,"Mjolnir",L_Mj6;
  194. next;
  195. L_S6:
  196. if(countitem(2410)<1)goto no_equip;
  197. delitem 2410,1;
  198. rentitem 2410,518400;
  199. next;
  200. close;
  201. L_M6:
  202. if(countitem(2629)<1)goto no_equip;
  203. delitem 2629,1;
  204. rentitem 2629,518400;
  205. next;
  206. close;
  207. L_A6:
  208. if(countitem(2541)<1)goto no_equip;
  209. delitem 2541,1;
  210. rentitem 2541,518400;
  211. next;
  212. close;
  213. L_B6:
  214. if(countitem(2630)<1)goto no_equip;
  215. delitem 2630,1;
  216. rentitem 2630,518400;
  217. next;
  218. close;
  219. L_Mj6:
  220. if(countitem(1530)<1)goto no_equip;
  221. delitem 1530,1;
  222. rentitem 1530,518400;
  223. next;
  224. close;
  225. L_7:
  226. if(countitem(24042)<7)goto no_item;
  227. delitem 24042,7;
  228. mes "Allright, now select an item";
  229. menu "Sleipnir",L_S7,"Meginghard",L_M7,"Asprika",L_A7,"Brisingamen",L_B7,"Mjolnir",L_Mj7;
  230. next;
  231. L_S7:
  232. if(countitem(2410)<1)goto no_equip;
  233. delitem 2410,1;
  234. rentitem 2410,604800;
  235. next;
  236. close;
  237. L_M7:
  238. if(countitem(2629)<1)goto no_equip;
  239. delitem 2629,1;
  240. rentitem 2629,604800;
  241. next;
  242. close;
  243. L_A7:
  244. if(countitem(2541)<1)goto no_equip;
  245. delitem 2541,1;
  246. rentitem 2541,604800;
  247. next;
  248. close;
  249. L_B7:
  250. if(countitem(2630)<1)goto no_equip;
  251. delitem 2630,1;
  252. rentitem 2630,604800;
  253. next;
  254. close;
  255. L_Mj7:
  256. if(countitem(1530)<1)goto no_equip;
  257. delitem 1530,1;
  258. rentitem 1530,604800;
  259. next;
  260. close;
  261. L_8:
  262. if(countitem(24042)<8)goto no_item;
  263. delitem 24042,8;
  264. mes "Allright, now select an item";
  265. menu "Sleipnir",L_S8,"Meginghard",L_M8,"Asprika",L_A8,"Brisingamen",L_B8,"Mjolnir",L_Mj8;
  266. next;
  267. L_S8:
  268. if(countitem(2410)<1)goto no_equip;
  269. delitem 2410,1;
  270. rentitem 2410,691200;
  271. next;
  272. close;
  273. L_M8:
  274. if(countitem(2629)<1)goto no_equip;
  275. delitem 2629,1;
  276. rentitem 2629,691200;
  277. next;
  278. close;
  279. L_A8:
  280. if(countitem(2541)<1)goto no_equip;
  281. delitem 2541,1;
  282. rentitem 2541,691200;
  283. next;
  284. close;
  285. L_B8:
  286. if(countitem(2630)<1)goto no_equip;
  287. delitem 2630,1;
  288. rentitem 2630,691200;
  289. next;
  290. close;
  291. L_Mj8:
  292. if(countitem(1530)<1)goto no_equip;
  293. delitem 1530,1;
  294. rentitem 1530,691200;
  295. next;
  296. close;
  297. L_9:
  298. if(countitem(24042)<9)goto no_item;
  299. delitem 24042,9;
  300. mes "Allright, now select an item";
  301. menu "Sleipnir",L_S9,"Meginghard",L_M9,"Asprika",L_A9,"Brisingamen",L_B9,"Mjolnir",L_Mj9;
  302. next;
  303. L_S9:
  304. if(countitem(2410)<1)goto no_equip;
  305. delitem 2410,1;
  306. rentitem 2410,777600;
  307. next;
  308. close;
  309. L_M9:
  310. if(countitem(2629)<1)goto no_equip;
  311. delitem 2629,1;
  312. rentitem 2629,777600;
  313. next;
  314. close;
  315. L_A9:
  316. if(countitem(2541)<1)goto no_equip;
  317. delitem 2541,1;
  318. rentitem 2541,777600;
  319. next;
  320. close;
  321. L_B9:
  322. if(countitem(2630)<1)goto no_equip;
  323. delitem 2630,1;
  324. rentitem 2630,777600;
  325. next;
  326. close;
  327. L_Mj9:
  328. if(countitem(1530)<1)goto no_equip;
  329. delitem 1530,1;
  330. rentitem 1530,777600;
  331. next;
  332. close;
  333. L_10:
  334. if(countitem(24042)<10)goto no_item;
  335. delitem 24042,10;
  336. mes "Allright, now select an item";
  337. menu "Sleipnir",L_S0,"Meginghard",L_M0,"Asprika",L_A0,"Brisingamen",L_B0,"Mjolnir",L_Mj0;
  338. next;
  339. L_S0:
  340. if(countitem(2410)<1)goto no_equip;
  341. delitem 2410,1;
  342. rentitem 2410,864000;
  343. next;
  344. close;
  345. L_M0:
  346. if(countitem(2629)<1)goto no_equip;
  347. delitem 2629,1;
  348. rentitem 2629,864000;
  349. next;
  350. close;
  351. L_A0:
  352. if(countitem(2541)<1)goto no_equip;
  353. delitem 2541,1;
  354. rentitem 2541,864000;
  355. next;
  356. close;
  357. L_B0:
  358. if(countitem(2630)<1)goto no_equip;
  359. delitem 2630,1;
  360. rentitem 2630,864000;
  361. next;
  362. close;
  363. L_Mj0:
  364. if(countitem(1530)<1)goto no_equip;
  365. delitem 1530,1;
  366. rentitem 1530,864000;
  367. next;
  368. close;
  369.  
  370. no_item:
  371. mes "Huh trying to fool me?";
  372. mes "you don't have sufficent tickets.";
  373. mes "Sorry i can't refund any ticket.";
  374. close;
  375.  
  376. no_equip:
  377. mes "Sorry but seems that you don't even have the correct equip";
  378. mes "First get it and then we may talk";
  379. close;
  380.  
  381. L_cancel:
  382. mes "Allright don't worry, come to me any time";
  383. close;
  384.  
  385. L_rent:
  386. mes "Allright, select an item to rent for first time and how many days";
  387. mes "Note, on selection the ticket will be deleted, so please pick wise";
  388. mes "Remember, for each day you will need a ticket";
  389. menu "1 Day",L_n1,"2 Days",L_n2,"3 Days",L_n3,"4 Days",L_n4,"5 Days",L_n5,"6 Days",L_n6,"7 Days",L_n7,"8 Days",L_n8,"9 Days",L_n9,"10 Days",L_n10,"Cancel",L_cancel;
  390. next;
  391. L_n1:
  392. if(countitem(24042)<1)goto no_item;
  393. delitem 24042,1;
  394. mes "Allright, now select an item";
  395. menu "Sleipnir",L_nSs1,"Meginghard",L_nMm1,"Asprika",L_nAa1,"Brisingamen",L_nBb1,"Mjolnir",L_nMmj1;
  396. next;
  397. L_nSs1:
  398. rentitem 2410,86400;
  399. next;
  400. close;
  401. L_nMm1:
  402. rentitem 2629,86400;
  403. next;
  404. close;
  405. L_nAa1:
  406. rentitem 2541,86400;
  407. next;
  408. close;
  409. L_nBb1:
  410. rentitem 2630,86400;
  411. next;
  412. close;
  413. L_nMmj1:
  414. rentitem 1530,86400;
  415. next;
  416. L_n2:
  417. if(countitem(24042)<2)goto no_item;
  418. delitem 24042,2;
  419. mes "Allright, now select an item";
  420. menu "Sleipnir",L_nSs2,"Meginghard",L_nMm2,"Asprika",L_nAa2,"Brisingamen",L_nBb2,"Mjolnir",L_nMmj2;
  421. next;
  422. L_nSs2:
  423. rentitem 2410,172800;
  424. next;
  425. close;
  426. L_nMm2:
  427. rentitem 2629,172800;
  428. next;
  429. close;
  430. L_nAa2:
  431. rentitem 2541,172800;
  432. next;
  433. close;
  434. L_nBb2:
  435. rentitem 2630,172800;
  436. next;
  437. close;
  438. L_nMmj2:
  439. rentitem 1530,172800;
  440. next;
  441. close;
  442. L_n3:
  443. if(countitem(24042)<3)goto no_item;
  444. delitem 24042,3;
  445. mes "Allright, now select an item";
  446. menu "Sleipnir",L_nSs3,"Meginghard",L_nMm3,"Asprika",L_nAa3,"Brisingamen",L_nBb3,"Mjolnir",L_nMmj3;
  447. L_nSs3:
  448. rentitem 2410,259200;
  449. next;
  450. close;
  451. L_nMm3:
  452. rentitem 2629,259200;
  453. next;
  454. close;
  455. L_nAa3:
  456. rentitem 2541,259200;
  457. next;
  458. close;
  459. L_nBb3:
  460. rentitem 2630,259200;
  461. next;
  462. close;
  463. L_nMmj3:
  464. rentitem 1530,259200;
  465. next;
  466. close;
  467. L_n4:
  468. if(countitem(24042)<4)goto no_item;
  469. delitem 24042,4;
  470. mes "Allright, now select an item";
  471. menu "Sleipnir",L_nSs4,"Meginghard",L_nMm4,"Asprika",L_nAa4,"Brisingamen",L_nBb4,"Mjolnir",L_nMmj4;
  472. next;
  473. L_nSs4:
  474. rentitem 2410,345600;
  475. next;
  476. close;
  477. L_nMm4:
  478. rentitem 2629,345600;
  479. next;
  480. close;
  481. L_nAa4:
  482. rentitem 2541,345600;
  483. next;
  484. close;
  485. L_nBb4:
  486. rentitem 2630,345600;
  487. next;
  488. close;
  489. L_nMmj4:
  490. rentitem 1530,345600;
  491. next;
  492. close;
  493. L_n5:
  494. if(countitem(24042)<5)goto no_item;
  495. delitem 24042,5;
  496. mes "Allright, now select an item";
  497. menu "Sleipnir",L_nSs5,"Meginghard",L_nMm5,"Asprika",L_nAa5,"Brisingamen",L_nBb5,"Mjolnir",L_nMmj5;
  498. next;
  499. L_nSs5:
  500. rentitem 2410,432000;
  501. next;
  502. close;
  503. L_nMm5:
  504. rentitem 2629,432000;
  505. next;
  506. close;
  507. L_nAa5:
  508. rentitem 2541,432000;
  509. next;
  510. close;
  511. L_nBb5:
  512. rentitem 2630,432000;
  513. next;
  514. close;
  515. L_nMmj5:
  516. rentitem 1530,432000;
  517. next;
  518. close;
  519. L_n6:
  520. if(countitem(24042)<6)goto no_item;
  521. delitem 24042,6;
  522. mes "Allright, now select an item";
  523. menu "Sleipnir",L_nSs6,"Meginghard",L_nMm6,"Asprika",L_nAa6,"Brisingamen",L_nBb6,"Mjolnir",L_nMmj6;
  524. next;
  525. L_nSs6:
  526. rentitem 2410,518400;
  527. next;
  528. close;
  529. L_nMm6:
  530. rentitem 2629,518400;
  531. next;
  532. close;
  533. L_nAa6:
  534. rentitem 2541,518400;
  535. next;
  536. close;
  537. L_nBb6:
  538. rentitem 2630,518400;
  539. next;
  540. close;
  541. L_nMmj6:
  542. rentitem 1530,518400;
  543. next;
  544. close;
  545. L_n7:
  546. if(countitem(24042)<7)goto no_item;
  547. delitem 24042,7;
  548. mes "Allright, now select an item";
  549. menu "Sleipnir",L_nSs7,"Meginghard",L_nMm7,"Asprika",L_nAa7,"Brisingamen",L_nBb7,"Mjolnir",L_nMmj7;
  550. next;
  551. L_nSs7:
  552. rentitem 2410,604800;
  553. next;
  554. close;
  555. L_nMm7:
  556. rentitem 2629,604800;
  557. next;
  558. close;
  559. L_nAa7:
  560. rentitem 2541,604800;
  561. next;
  562. close;
  563. L_nBb7:
  564. rentitem 2630,604800;
  565. next;
  566. close;
  567. L_nMmj7:
  568. rentitem 1530,604800;
  569. next;
  570. close;
  571. L_n8:
  572. if(countitem(24042)<8)goto no_item;
  573. delitem 24042,8;
  574. mes "Allright, now select an item";
  575. menu "Sleipnir",L_nSs8,"Meginghard",L_nMm8,"Asprika",L_nAa8,"Brisingamen",L_nBb8,"Mjolnir",L_nMmj8;
  576. next;
  577. L_nSs8:
  578. rentitem 2410,691200;
  579. next;
  580. close;
  581. L_nMm8:
  582. rentitem 2629,691200;
  583. next;
  584. close;
  585. L_nAa8:
  586. rentitem 2541,691200;
  587. next;
  588. close;
  589. L_nBb8:
  590. rentitem 2630,691200;
  591. next;
  592. close;
  593. L_nMmj8:
  594. rentitem 1530,691200;
  595. next;
  596. close;
  597. L_n9:
  598. if(countitem(24042)<9)goto no_item;
  599. delitem 24042,9;
  600. mes "Allright, now select an item";
  601. menu "Sleipnir",L_nSs9,"Meginghard",L_nMm9,"Asprika",L_nAa9,"Brisingamen",L_nBb9,"Mjolnir",L_nMmj9;
  602. next;
  603. L_nSs9:
  604. rentitem 2410,777600;
  605. next;
  606. close;
  607. L_nMm9:
  608. rentitem 2629,777600;
  609. next;
  610. close;
  611. L_nAa9:
  612. rentitem 2541,777600;
  613. next;
  614. close;
  615. L_nBb9:
  616. rentitem 2630,777600;
  617. next;
  618. close;
  619. L_nMmj9:
  620. rentitem 1530,777600;
  621. next;
  622. close;
  623. L_n10:
  624. if(countitem(24042)<10)goto no_item;
  625. delitem 24042,10;
  626. mes "Allright, now select an item";
  627. menu "Sleipnir",L_nSs0,"Meginghard",L_nMm0,"Asprika",L_nAa0,"Brisingamen",L_nBb0,"Mjolnir",L_nMmj0;
  628. next;
  629. L_nSs0:
  630. rentitem 2410,864000;
  631. next;
  632. close;
  633. L_nMm0:
  634. rentitem 2629,864000;
  635. next;
  636. close;
  637. L_nAa0:
  638. rentitem 2541,864000;
  639. next;
  640. close;
  641. L_nBb0:
  642. rentitem 2630,864000;
  643. next;
  644. close;
  645. L_nMmj0:
  646. rentitem 1530,864000;
  647. next;
  648. close;
  649. OnInit:
  650. waitingroom "Rentals",0;
  651. end;
  652. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement