Yasunari Ishibashi Posted May 9, 2012 Posted May 9, 2012 (edited) NPC's function is to be a job change 1npc = 1 job, at once max lvup & joblvup example: NPC A Ontouch: atcommand "@ job 4077" strcharinfo + (0) + ""; atcommand "@ lvup 999" + strcharinfo (0) + ""; atcommand "@ joblvup 999" + strcharinfo (0) + ""; } NPC B Ontouch: atcommand "@ job 4060" strcharinfo + (0) + ""; atcommand "@ lvup 999" + strcharinfo (0) + ""; atcommand "@ joblvup 999" + strcharinfo (0) + ""; } etc. if anyone can help make the script? Make an example script just let me try to change her job. Edited May 9, 2012 by Yasunari Ishibashi Quote
Yasunari Ishibashi Posted May 9, 2012 Author Posted May 9, 2012 (edited) The script function is to change a particular job, 1 job = 1 npc with a single touch direct npc job change. Edited May 9, 2012 by Yasunari Ishibashi Quote
Emistry Posted May 9, 2012 Posted May 9, 2012 try this ? prontera,155,181,5 script Sample 757,5,5,{ OnTouch: if( Class == 0 ){ jobchange 4060; set BaseLevel,99; set JobLevel,70; resetskill; resetstatus; } end; } Quote
Yasunari Ishibashi Posted May 12, 2012 Author Posted May 12, 2012 how the job minstrels and wanderer, when used in one an NPC? bump... if( Class == 0 | Sex == 0 ){ jobchange 4075; else jobchange 4076; set BaseLevel,99; set JobLevel,70; resetskill; resetstatus; } end; } whether right script like the above? Quote
Question
Yasunari Ishibashi
NPC's function is to be a job change 1npc = 1 job, at once max lvup & joblvup
example:
NPC A
Ontouch:
atcommand "@ job 4077" strcharinfo + (0) + "";
atcommand "@ lvup 999" + strcharinfo (0) + "";
atcommand "@ joblvup 999" + strcharinfo (0) + "";
}
NPC B
Ontouch:
atcommand "@ job 4060" strcharinfo + (0) + "";
atcommand "@ lvup 999" + strcharinfo (0) + "";
atcommand "@ joblvup 999" + strcharinfo (0) + "";
}
etc.
if anyone can help make the script?
Make an example script just let me try to change her job.
Edited by Yasunari Ishibashi5 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.