Critica Posted April 17, 2012 Posted April 17, 2012 (edited) hii! good day to all!! Can i request a npc that gives rewards to a players who reaches maximum level? (255 for ex.) and a Npc warper that checks the level of character first? for example you need to be level 99 to use the warp npc, or to warp you out.. thaks a lot guys!! Edited April 17, 2012 by critica Quote
Nameless2you Posted April 17, 2012 Posted April 17, 2012 Try something like this for the rewarder.. prontera,150,150,5 script Reward NPC 99,{ set .@MaxBLevel,255; //Set your servers max base level here. set .@MaxJLevel,70; //Set your servers max job level here. set .@item,501; //Set your reward item here. if (BaseLevel != .@MaxBLevel && JobLevel != .@MaxJLevel) end; mes "Congratulations, you've achieve the max level in the server, here's your reward!"; getitem .@item,1; close; } prontera,155,155,5 script Warpsome 99,{ if(BaseLevel >= 99){ warp "prontera",0,0; } end; } Quote
Critica Posted April 17, 2012 Author Posted April 17, 2012 thank you ill try it now Hii.. for the 1st one, can you make make it give only 1 item? everytime i click the the npc it gives me reward.. again and again Quote
Nameless2you Posted April 17, 2012 Posted April 17, 2012 per character or per account..? I'll just make both.. For account, meaning only 1 character in each account can ever get the item prontera,150,150,5 script Reward NPC 99,{ set .@MaxBLevel,255; //Set your servers max base level here. set .@MaxJLevel,70; //Set your servers max job level here. set .@item,501; //Set your reward item here. if (BaseLevel != .@MaxBLevel && JobLevel != .@MaxJLevel && #LReward != 1) end; mes "Congratulations, you've achieve the max level in the server, here's your reward!"; getitem .@item,1; set #LReward,1; close; } For character, meaning if he deletes the character he can get the reward again, or if he uses another character that is max level he can get the item once on that character as well.. prontera,150,150,5 script Reward NPC 99,{ set .@MaxBLevel,255; //Set your servers max base level here. set .@MaxJLevel,70; //Set your servers max job level here. set .@item,501; //Set your reward item here. if (BaseLevel != .@MaxBLevel && JobLevel != .@MaxJLevel && LReward != 1) end; mes "Congratulations, you've achieve the max level in the server, here's your reward!"; getitem .@item,1; set LReward,1; close; } Quote
0 gmchocko Posted February 27, 2018 Posted February 27, 2018 On 4/18/2012 at 1:25 AM, Nameless2you said: per character or per account..? I'll just make both.. For account, meaning only 1 character in each account can ever get the item prontera,150,150,5 script Reward NPC 99,{ set .@MaxBLevel,255; //Set your servers max base level here. set .@MaxJLevel,70; //Set your servers max job level here. set .@item,501; //Set your reward item here. if (BaseLevel != .@MaxBLevel && JobLevel != .@MaxJLevel && #LReward != 1) end; mes "Congratulations, you've achieve the max level in the server, here's your reward!"; getitem .@item,1; set #LReward,1; close; } For character, meaning if he deletes the character he can get the reward again, or if he uses another character that is max level he can get the item once on that character as well.. prontera,150,150,5 script Reward NPC 99,{ set .@MaxBLevel,255; //Set your servers max base level here. set .@MaxJLevel,70; //Set your servers max job level here. set .@item,501; //Set your reward item here. if (BaseLevel != .@MaxBLevel && JobLevel != .@MaxJLevel && LReward != 1) end; mes "Congratulations, you've achieve the max level in the server, here's your reward!"; getitem .@item,1; set LReward,1; close; } both same Quote
Question
Critica
hii! good day to all!!
Can i request a npc that gives rewards to a players who reaches maximum level? (255 for ex.)
and a Npc warper that checks the level of character first? for example you need to be level 99 to use the warp npc, or to warp you out..
thaks a lot guys!!
Edited by critica4 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.