Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.89 KB | None | 0 0
  1. //==============================================================================//
  2. //= Script Release : Job Changer + Max Leveler [ Version 1.5 ]
  3. //==================================By==========================================//
  4. //= ManiacSociety
  5. //==============================================================================//
  6. //= Idea Came From : ManiacSociety
  7. //= Helper : Emistry & Kenpachi
  8. //==============================================================================//
  9. //= D E S C R I P T I O N S
  10. //==============================================================================//
  11. // -- 1. Character can choose a Job which he like to be.
  12. // -- 2. This NPC only have 1 Time Usage.
  13. // If it is set to Account Based then that account can use 1 times.
  14. // If it is set to Character Based then all new character can use 1 times.
  15. // -- 3. Complete skills / Skill Points will be given if it is set to be.
  16. // -- 4. Base Level and Job Level will be given upon Job Change.
  17. //==============================================================================//
  18. //= V E R S I O N S
  19. //==============================================================================//
  20. // -- [ 1.5 ] : Added Configuration for Account Based / Character Based Settings
  21. // -- [ 1.4 ] : Added Baby Classes + 3rd Job Classes.
  22. // -- [ 1.3 ] : Added Configuration Option , 4 Announce Option , Informations.
  23. // -- [ 1.2 ] : Simplified Scripts + Shorten the Scripts.
  24. // -- [ 1.1 ] : Added New Job Change Option.
  25. // -- [ 1.0 ] : Simple Login Auto Max Level + Job Changer.
  26. //==============================================================================//
  27. //= R U L E S
  28. //==============================================================================//
  29. // -- 1. Do not use for exchanging purpose.
  30. // -- 2. Do not claim it as yours.
  31. // -- 3. Do not change or remove the credits.
  32. // -- 4. Do not sell the script in order to get paid.
  33. // -- 5. Do not re-sharing upon modified without permission.
  34. //==============================================================================//
  35.  
  36.  
  37.  
  38.  
  39. //alchemy,156,94,4 script Job Master 123,{
  40. dicastes01,268,167,6 script Job Master 123,{
  41.  
  42. if( Class != Job_Novice && Class != Job_Novice_High ){
  43. mes "You cant use if you're not Novice.";
  44. close;
  45. }
  46.  
  47. mes "[Job Changer]";
  48. mes "Do you want to change job?";
  49. mes "If u want change to baby class u also can use @blvl @jlvl @allskill";
  50. next;
  51. menu "Yes",YES,"No",NO;
  52. NO:
  53. mes "[Job Changer]";
  54. mes "Ok then.";
  55. mes "Have a good day.";
  56. close;
  57.  
  58. YES:
  59. atcommand "@allstat -5000";
  60. atcommand "@baselvlup -500";
  61. atcommand "@joblvlup -120";
  62. goto NA;
  63.  
  64.  
  65.  
  66.  
  67. NA:
  68. menu "Transcendent 2nd Job",TR,"Expanded Class",ETC,"Baby Job",BBY;
  69.  
  70.  
  71. TR:
  72. menu "Lord Knight",LK,"Paladin",PAL,"High Priest",HIGHP,"Champion",CH,"Sniper",SN,"Clown/Gypsy",CG,"High Wizard",HW,"Professor",PR,"Assassin Cross",ASX,"Stalker",ST,"Whitesmith",WS,"Creator",CRE,"Back",NA;
  73.  
  74. LK:
  75. atcommand "@job 4002";
  76. set JobLevel, 120;
  77. atcommand "@job 4008";
  78. set JobLevel, 120;
  79. set BaseLevel, 500;
  80. warp "dicastes01",254,161;
  81. goto gotocity;
  82. end;
  83.  
  84. PAL:
  85. atcommand "@job 4002";
  86. set JobLevel, 120;
  87. atcommand "@job 4015";
  88. set JobLevel, 120;
  89. set BaseLevel, 500;
  90. warp "dicastes01",254,161;
  91. goto gotocity;
  92. end;
  93.  
  94. HIGHP:
  95. atcommand "@job 4005";
  96. set JobLevel, 120;
  97. atcommand "@job 4009";
  98. set JobLevel, 120;
  99. set BaseLevel, 500;
  100. warp "dicastes01",254,161;
  101. goto gotocity;
  102. end;
  103.  
  104. CH:
  105. atcommand "@job 4005";
  106. set JobLevel, 120;
  107. atcommand "@job 4016";
  108. set JobLevel, 120;
  109. set BaseLevel, 500;
  110. warp "dicastes01",254,161;
  111. goto gotocity;
  112. end;
  113.  
  114. SN:
  115. atcommand "@job 4004";
  116. set JobLevel, 120;
  117. atcommand "@job 4012";
  118. set JobLevel, 120;
  119. set BaseLevel, 500;
  120. warp "dicastes01",254,161;
  121. goto gotocity;
  122. end;
  123.  
  124. CG:
  125. atcommand "@job 4004";
  126. set JobLevel, 120;
  127. atcommand "@job 4020";
  128. set JobLevel, 120;
  129. set BaseLevel, 500;
  130. warp "dicastes01",254,161;
  131. goto gotocity;
  132. end;
  133.  
  134. HW:
  135. atcommand "@job 4003";
  136. set JobLevel, 120;
  137. atcommand "@job 4010";
  138. set JobLevel, 120;
  139. set BaseLevel, 500;
  140. warp "dicastes01",254,161;
  141. goto gotocity;
  142. end;
  143.  
  144. PR:
  145. atcommand "@job 4003";
  146. set JobLevel, 120;
  147. atcommand "@job 4017";
  148. set JobLevel, 120;
  149. set BaseLevel, 500;
  150. warp "dicastes01",254,161;
  151. goto gotocity;
  152. end;
  153.  
  154. ASX:
  155. atcommand "@job 4007";
  156. set JobLevel, 120;
  157. atcommand "@job 4013";
  158. set JobLevel, 120;
  159. set BaseLevel, 500;
  160. warp "dicastes01",254,161;
  161. goto gotocity;
  162. end;
  163.  
  164. ST:
  165. atcommand "@job 4007";
  166. set JobLevel, 120;
  167. atcommand "@job 4018";
  168. set JobLevel, 120;
  169. set BaseLevel, 500;
  170. warp "dicastes01",254,161;
  171. goto gotocity;
  172. end;
  173.  
  174. WS:
  175. atcommand "@job 4006";
  176. set JobLevel, 120;
  177. atcommand "@job 4011";
  178. set JobLevel, 120;
  179. set BaseLevel, 500;
  180. warp "dicastes01",254,161;
  181. goto gotocity;
  182. end;
  183.  
  184. CRE:
  185. atcommand "@job 4006";
  186. set JobLevel, 120;
  187. atcommand "@job 4019";
  188. set JobLevel, 120;
  189. set BaseLevel, 500;
  190. warp "dicastes01",254,161;
  191. goto gotocity;
  192. end;
  193.  
  194. ETC:
  195. menu "Ninja",NIN,"Gunslinger",GUN,"Star Gladiator",SG,"Soul Linker",SL,"Taekwondo Boy",TB,"Back",NA;
  196.  
  197. NIN: atcommand "@job 4001";
  198. set JobLevel, 10;
  199. atcommand "@job 25";
  200. set JobLevel, 120;
  201. set BaseLevel, 500;
  202. warp "dicastes01",254,161;
  203. goto gotocity;
  204. end;
  205.  
  206. GUN: atcommand "@job 4001";
  207. set JobLevel, 10;
  208. atcommand "@job 24";
  209. set JobLevel, 120;
  210. set BaseLevel, 500;
  211. warp "dicastes01",254,161;
  212. goto gotocity;
  213. end;
  214.  
  215. SG: atcommand "@job 4001";
  216. set JobLevel, 10;
  217. atcommand "@job 4046";
  218. set JobLevel, 120;
  219. atcommand "@job 4047";
  220. set JobLevel, 120;
  221. set BaseLevel, 500;
  222. warp "dicastes01",254,161;
  223. goto gotocity;
  224. end;
  225.  
  226. SL: atcommand "@job 4001";
  227. set JobLevel, 10;
  228. atcommand "@job 4046";
  229. set JobLevel, 120;
  230. atcommand "@job 4049";
  231. set JobLevel, 120;
  232. set BaseLevel, 500;
  233. warp "dicastes01",254,161;
  234. goto gotocity;
  235. end;
  236.  
  237. TB: atcommand "@job 4001";
  238. set JobLevel, 10;
  239. atcommand "@job 4046";
  240. set JobLevel, 120;
  241. atcommand "@job 4046";
  242. set JobLevel, 120;
  243. set BaseLevel, 500;
  244. warp "dicastes01",254,161;
  245. goto gotocity;
  246. end;
  247.  
  248. BBY:
  249. menu "Baby 1st Job",B1ST,"Baby 2nd Job",B2ND,"Back",NA;
  250.  
  251. B1ST:
  252. menu "Baby Novice",BN,"Baby Swordman",BS,"Baby Magician",BM,"Baby Archer",BA,"Baby Acolyte",BAC,"Baby Merchant",BME,"Baby Thief",BT,"Back",BBY;
  253.  
  254. BN: atcommand "@job 4023";
  255. set JobLevel, 10;
  256. set BaseLevel, 500;
  257. warp "dicastes01",254,161;
  258. goto gotocity;
  259. end;
  260.  
  261. BS: atcommand "@job 4023";
  262. set JobLevel, 10;
  263. atcommand "@job 4024";
  264. set JobLevel, 50;
  265. set BaseLevel, 500;
  266. warp "dicastes01",254,161;
  267. goto gotocity;
  268. end;
  269.  
  270. BM: atcommand "@job 4023";
  271. set JobLevel, 10;
  272. atcommand "@job 4025";
  273. set JobLevel, 50;
  274. set BaseLevel, 500;
  275. warp "dicastes01",254,161;
  276. goto gotocity;
  277. end;
  278.  
  279. BA: atcommand "@job 4023";
  280. set JobLevel, 10;
  281. atcommand "@job 4026";
  282. set JobLevel, 50;
  283. set BaseLevel, 500;
  284. warp "dicastes01",254,161;
  285. goto gotocity;
  286. end;
  287.  
  288. BAC: atcommand "@job 4023";
  289. set JobLevel, 10;
  290. atcommand "@job 4027";
  291. set JobLevel, 50;
  292. set BaseLevel, 500;
  293. warp "dicastes01",254,161;
  294. goto gotocity;
  295. end;
  296.  
  297. BME: atcommand "@job 4023";
  298. set JobLevel, 10;
  299. atcommand "@job 4028";
  300. set JobLevel, 50;
  301. set BaseLevel, 500;
  302. warp "dicastes01",254,161;
  303. goto gotocity;
  304. end;
  305.  
  306. BT: atcommand "@job 4023";
  307. set JobLevel, 10;
  308. atcommand "@job 4029";
  309. set JobLevel, 50;
  310. set BaseLevel, 500;
  311. warp "dicastes01",254,161;
  312. goto gotocity;
  313. end;
  314.  
  315.  
  316. B2ND:
  317. menu "Baby Knight",BK,"Baby Priest",BP,"Baby Wizard",BW,"Baby Blacksmith",BB,"Baby Hunter",BH,"Baby Assassin",BAS,"Baby Crusade",BC,"Baby Monk",BMO,"Baby Sage",BSA,"Baby Rogue",BR,"Baby Alchemist",BAL,"Baby Bard/Dancer",BBD,"Back",BBY;
  318.  
  319. BK: atcommand "@job 4023";
  320. set JobLevel, 10;
  321. atcommand "@job 4024";
  322. set JobLevel, 120;
  323. atcommand "@job 4030";
  324. set JobLevel, 120;
  325. set BaseLevel, 500;
  326. warp "dicastes01",254,161;
  327. goto gotocity;
  328. end;
  329.  
  330. BP: atcommand "@job 4023";
  331. set JobLevel, 10;
  332. atcommand "@job 4027";
  333. set JobLevel, 120;
  334. atcommand "@job 4031";
  335. set JobLevel, 120;
  336. set BaseLevel, 500;
  337. warp "dicastes01",254,161;
  338. goto gotocity;
  339. end;
  340.  
  341. BW: atcommand "@job 4023";
  342. set JobLevel, 10;
  343. atcommand "@job 4025";
  344. set JobLevel, 120;
  345. atcommand "@job 4032";
  346. set JobLevel, 120;
  347. set BaseLevel, 500;
  348. warp "dicastes01",254,161;
  349. goto gotocity;
  350. end;
  351.  
  352. BB: atcommand "@job 4023";
  353. set JobLevel, 10;
  354. atcommand "@job 4028";
  355. set JobLevel, 120;
  356. atcommand "@job 4033";
  357. set JobLevel, 120;
  358. set BaseLevel, 500;
  359. warp "dicastes01",254,161;
  360. goto gotocity;
  361. end;
  362.  
  363. BH: atcommand "@job 4023";
  364. set JobLevel, 10;
  365. atcommand "@job 4026";
  366. set JobLevel, 120;
  367. atcommand "@job 4034";
  368. set JobLevel, 120;
  369. set BaseLevel, 500;
  370. warp "dicastes01",254,161;
  371. goto gotocity;
  372. end;
  373.  
  374. BAS: atcommand "@job 4023";
  375. set JobLevel, 10;
  376. atcommand "@job 4029";
  377. set JobLevel, 120;
  378. atcommand "@job 4035";
  379. set JobLevel, 120;
  380. set BaseLevel, 500;
  381. warp "dicastes01",254,161;
  382. goto gotocity;
  383. end;
  384.  
  385. BC: atcommand "@job 4023";
  386. set JobLevel, 10;
  387. atcommand "@job 4024";
  388. set JobLevel, 120;
  389. atcommand "@job 4037";
  390. set JobLevel, 120;
  391. set BaseLevel, 500;
  392. warp "dicastes01",254,161;
  393. goto gotocity;
  394. end;
  395.  
  396. BMO: atcommand "@job 4023";
  397. set JobLevel, 10;
  398. atcommand "@job 4027";
  399. set JobLevel, 120;
  400. atcommand "@job 4038";
  401. set JobLevel, 120;
  402. set BaseLevel, 500;
  403. warp "dicastes01",254,161;
  404. goto gotocity;
  405. end;
  406.  
  407. BSA: atcommand "@job 4023";
  408. set JobLevel, 10;
  409. atcommand "@job 4025";
  410. set JobLevel, 120;
  411. atcommand "@job 4039";
  412. set JobLevel, 120;
  413. set BaseLevel, 500;
  414. warp "dicastes01",254,161;
  415. goto gotocity;
  416. end;
  417.  
  418. BR: atcommand "@job 4023";
  419. set JobLevel, 10;
  420. atcommand "@job 4029";
  421. set JobLevel, 120;
  422. atcommand "@job 4040";
  423. set JobLevel, 120;
  424. set BaseLevel, 500;
  425. warp "dicastes01",254,161;
  426. goto gotocity;
  427. end;
  428.  
  429. BAL: atcommand "@job 4023";
  430. set JobLevel, 10;
  431. atcommand "@job 4028";
  432. set JobLevel, 120;
  433. atcommand "@job 4041";
  434. set JobLevel, 120;
  435. set BaseLevel, 500;
  436. warp "dicastes01",254,161;
  437. goto gotocity;
  438. end;
  439.  
  440. BBD: atcommand "@job 4023";
  441. set JobLevel, 10;
  442. atcommand "@job 4026";
  443. set JobLevel, 120;
  444. atcommand "@job 4042";
  445. set JobLevel, 120;
  446. set BaseLevel, 500;
  447. warp "dicastes01",254,161;
  448. goto gotocity;
  449. end;
  450.  
  451.  
  452.  
  453. gotocity:
  454. set Zeny,Zeny + 1000;
  455. savepoint "dicastes01",254,161;
  456. end;
  457. OnInit:
  458. end;
  459. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement