Echo Posted November 30, 2013 Posted November 30, 2013 (edited) Checking to see if anyone has already scripted an npc that warps those to job change locations vs. just changing there jobs. (Already searched not much came up, just seeing if someone already has something similar done that hasn't been shared). Edited November 30, 2013 by Echo Quote
painrugi Posted November 30, 2013 Posted November 30, 2013 you mean npc script to warp player to official job changer? Quote
Echo Posted December 1, 2013 Author Posted December 1, 2013 you mean npc script to warp player to official job changer? Yep so acolyte would be prontera church, thief would be morroc pyramid, mage would be the mage guild in geffen, etc... just hoping there is something like it out there already. Quote
painrugi Posted December 1, 2013 Posted December 1, 2013 try this one... prontera,154,184,5 script Job Changer Warper 928,{ mes "[Job Changer Warper]"; mes "Hello "+strcharinfo(0)+" you want to go to job changer location"; next; menu "Yes",-,"No",L_no; mes "[Job Changer Warper]"; mes "What job location you want"; switch(select("Swordman:Magician:Archer:Acoylte:Merchant:Thief")) { next; Case 1: mes "[Job Changer Warper]"; mes "Good Luck"; warp "prt_in",84,103; end; Case 2: mes "[Job Changer Warper]"; mes "Good Luck"; warp "geffen_in",164,121; end; Case 3: mes "[Job Changer Warper]"; mes "Good Luck"; warp "payon_in02",54,10; end; Case 4: mes "[Job Changer Warper]"; mes "Good Luck"; warp "prt_church",184,36; end; Case 5: mes "[Job Changer Warper]"; mes "Good Luck"; warp "alberta_in",58,43; end; Case 6: mes "[Job Changer Warper]"; mes "Good Luck"; warp "moc_prydb1",43,127; end; L_No: mes "Allright, see you later"; close; } } it's for job 1 only because i don't know very well the location of higher class.. 1 Quote
Patskie Posted December 1, 2013 Posted December 1, 2013 http://pastebin.com/raw.php?i=iNpW7D36 1 Quote
Echo Posted December 1, 2013 Author Posted December 1, 2013 http://pastebin.com/raw.php?i=iNpW7D36 try this one... prontera,154,184,5 script Job Changer Warper 928,{ mes "[Job Changer Warper]"; mes "Hello "+strcharinfo(0)+" you want to go to job changer location"; next; menu "Yes",-,"No",L_no; mes "[Job Changer Warper]"; mes "What job location you want"; switch(select("Swordman:Magician:Archer:Acoylte:Merchant:Thief")) { next; Case 1: mes "[Job Changer Warper]"; mes "Good Luck"; warp "prt_in",84,103; end; Case 2: mes "[Job Changer Warper]"; mes "Good Luck"; warp "geffen_in",164,121; end; Case 3: mes "[Job Changer Warper]"; mes "Good Luck"; warp "payon_in02",54,10; end; Case 4: mes "[Job Changer Warper]"; mes "Good Luck"; warp "prt_church",184,36; end; Case 5: mes "[Job Changer Warper]"; mes "Good Luck"; warp "alberta_in",58,43; end; Case 6: mes "[Job Changer Warper]"; mes "Good Luck"; warp "moc_prydb1",43,127; end; L_No: mes "Allright, see you later"; close; } } it's for job 1 only because i don't know very well the location of higher class.. Thank you both for the starts of this script - Was hoping one was out there but hadn't been shared. Either way I am grateful for the assistance! (Will be using Arc Angeling's since it is setup with an array format) I do have one question Arc Angeling - the .@s variable; is this simply used to track the selection in the arrays? I've seen the syntax before but am having some issues picking this language up. also curious as to the implode and explode functions if you don't mind me asking! Quote
Question
Echo
Checking to see if anyone has already scripted an npc that warps those to job change locations vs. just changing there jobs.
(Already searched not much came up, just seeing if someone already has something similar done that hasn't been shared).
Edited by Echo5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.