Lordamax Posted December 4, 2011 Posted December 4, 2011 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 Quote
Emistry Posted December 4, 2011 Posted December 4, 2011 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 .@i,0; .@i < getarraysize( .JobLists ); set .@i,.@i + 1 ){ set .@Menu$,.@Menu$ + (( Class != .JobLists[.@i] )?jobname( .JobLists[.@i] ):"")+":"; } set .@i,select( .@Menu$ ) - 1; jobchange .JobLists[.@i]; 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 Quote
CalciumKid Posted December 4, 2011 Posted December 4, 2011 So you basically want an NPC that will turn any class into any other class? Or do you wish to restrict it? Quote
Emistry Posted December 4, 2011 Posted December 4, 2011 (edited) 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 .@i,0; .@i < getarraysize( .JobLists ); set .@i,.@i + 1 ){ set .@Menu$,.@Menu$ + jobname( .JobLists[.@i] )+":"; } set .@i,select( .@Menu$ ) - 1; jobchange .@Menu$[.@i]; delitem 7227,3; mes "You have changed Job into "+jobname( Class ); } close; } Edited December 4, 2011 by Emistry 1 Quote
Lordamax Posted December 4, 2011 Author Posted December 4, 2011 Thanks for sharing the scfript but it is msg is only blank when i have 3 tcg! Quote
Orc Lord Posted December 4, 2011 Posted December 4, 2011 is this safe? like the skill points and status points will not be abused or something? Quote
Emistry Posted December 5, 2011 Posted December 5, 2011 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.... Quote
Lordamax Posted December 5, 2011 Author Posted December 5, 2011 i'm sorry hahahaha it works i'm sorry about the last post Quote
manabeast Posted December 5, 2011 Posted December 5, 2011 (edited) 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 December 6, 2011 by manabeast Quote
Emistry Posted December 5, 2011 Posted December 5, 2011 what is tcg? where can get? TCG = Trading Card Game ( ItemID # 7227 ) How to get it ? it depend on how your setting to decide how to get it la =='' Quote
llchrisll Posted December 6, 2011 Posted December 6, 2011 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 Quote
Emistry Posted December 6, 2011 Posted December 6, 2011 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 ^^ Quote
Question
Lordamax
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
12 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.