Jump to content
  • 0
Lordamax

Requesting Special Job Changer

Question

example i am high wizard and i want to be a champion. i will go to that npc and pay that npc 3 tcg and then my high wizard will be a champion. tnx for the advance help :)

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

Ouch ~ sry..there is a little typo at the SetArray there, and several bug >.<

try this...

prontera,155,181,5 script Sample 718,{
if( countitem( 7227 ) < 3 || JobLevel < 70 || BaseLevel < 99 ){
mes "You required 3 TCG Card , 99 Base Level and 70 JobLevel to Switch your Job Class.";
}else{
setarray .JobLists[0],4008,4009,4010,4011,4012,4013,4015,4016,4017,4018,4019,( Sex )?"4020":"4021";
for( set [email protected],0; [email protected] < getarraysize( .JobLists ); set [email protected],[email protected] + 1 ){
 set [email protected]$,[email protected]$ + (( Class != .JobLists[[email protected]] )?jobname( .JobLists[[email protected]] ):"")+":";
 }
set [email protected],select( [email protected]$ ) - 1;
jobchange .JobLists[[email protected]];
delitem 7227,3;
resetskill;
set JobLevel,70;
set SkillPoint,130;
mes "You have changed Job into "+jobname( Class );
}
close;
}

if the Skill Points amount is incorrect..then modify here

set SkillPoint,130;    // Novice 10 + First Class 50 + Trans 70  = 130 

Link to comment
Share on other sites

You can try this ~

prontera,155,181,5 script Sample 718,{
if( countitem( 7227 ) < 3 ){
mes "You required 3 TCG Card to Switch your Job Class.";
}else{
setarray .Jobists[0],4008,4009,4010,4011,4012,4013,4015,4016,4017,4018,4019,( Sex )?"4020":"4021";
for( set [email protected],0; [email protected] < getarraysize( .JobLists ); set [email protected],[email protected] + 1 ){
 set [email protected]$,[email protected]$ + jobname( .JobLists[[email protected]] )+":";
 }
set [email protected],select( [email protected]$ ) - 1;
jobchange [email protected]$[[email protected]];
delitem 7227,3;
mes "You have changed Job into "+jobname( Class );
}
close;
}
Edited by Emistry
  • Upvote 1
Link to comment
Share on other sites

doesn't work but thanks :)

Pardon ?? :) ? i didnt saw any stuffs related with "Not Working" here ? it work just fine in my test server...

if it didnt work...then please be specify !! nobody are mind reader here.... :D

Link to comment
Share on other sites

what is tcg? where can get? why now day alot ppl talk about tcg? XD! very curious sorry.

Reply 6/11/11 (11.39pm)

ic~ so it's a card. the card are using for? nothing need us think?

Edited by manabeast
Link to comment
Share on other sites

if the Skill Points amount is incorrect..then modify here

set SkillPoint,130;	// Novice 10 + First Class 50 + Trans 70  = 130 

Nothing serious, but wouldn't that be originally 127 Skill Points, since you're starting with Job Level 1 so you're missing one each :I.

Novice = 9 Skill Points

First Class = 49 Skill Points

Second Class = 69 Skill Points

=======

127 Skill Points for me ^^

Regards,

Chris

Link to comment
Share on other sites

Nothing serious, but wouldn't that be originally 127 Skill Points, since you're starting with Job Level 1 so you're missing one each :I.

Novice = 9 Skill Points

First Class = 49 Skill Points

Second Class = 69 Skill Points

Haha..thank for pointing out that ~

i not really sure on this "Calculation" xD

my math suck...>.<

and thx for it ^^

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.