ADM Francixs Posted August 3, 2014 Share Posted August 3, 2014 pa help naman ako dito.hindi ko kasi mapagana. //============================================================ prontera,150,193,4 script Reset Girl 124,{ // Skills, Stats, Both, Limit set [email protected], 5000, 5000, 9000, 1; mes "[Reset Girl]"; if([email protected][3] && reset_limit > [email protected][3]) { mes "Sorry you can only reset "[email protected][3]+" time in your life."; close; } mes "I am the Reset Girl."; mes "Reset Stats: "+ callfunc("F_InsertComma",[email protected][1]) +"z"; mes "Reset Skills: "+ callfunc("F_InsertComma",[email protected][0]) +"z"; mes "Reset Both: "+ callfunc("F_InsertComma",[email protected][2]) +"z"; mes "Please select the service you want:"; next; set [email protected],(select("^FF3355Reset Skills:Reset Stats:Reset Both^000000:Cancel")); if([email protected] > 3) close; mes "[Reset Girl]"; if (Zeny < [email protected][[email protected]]) { mes "Sorry, you don't have enough Zeny."; close; } if([email protected][3]){ mes "You can only reset "[email protected][3]+" time in your life, are you sure?"; if(select("Let me think:Thats fine") == 1) close; } set Zeny, [email protected][[email protected]]; if([email protected]&1){ sc_end SC_ALL; ResetSkill; } if([email protected]&2) ResetStatus; mes "There you go!"; if([email protected][3]) set reset_limit,reset_limit + 1; close; } Quote Link to comment Share on other sites More sharing options...
GodKnows Jhomz Posted August 7, 2014 Share Posted August 7, 2014 (edited) prontera,150,193,4 script Reset Girl 124,{ // Skills, Stats, Both, Limit OnInit: set [email protected],5000; set [email protected],5000; set [email protected],9000; set [email protected],1; mes "[Reset Girl]"; mes "I am the Reset Girl."; mes "Reset Stats: "[email protected]+"z"; mes "Reset Skills: "[email protected]+"z"; mes "Reset Both: "[email protected]+"z"; mes "Reset Limit: "[email protected]; mes "Please select the service you want:"; next; switch(select("^FF3355Reset Skills:Reset Stats:Reset Both^000000:Cancel")); case 1: mes "[Reset Girl]"; if ([email protected] < [email protected]){ if (Zeny < [email protected]) { mes "Sorry, you don't have enough Zeny."; close; } mes "You can only reset "[email protected]+" time in your life, are you sure?"; if (select("Let me think:Thats fine") ==1) close; set Zeny, [email protected]; sc_end SC_ALL; ResetSkill; mes "There you go!"; set [email protected],[email protected]+1; close; }else goto Limit; case 2: if ([email protected] < [email protected]){ mes "[Reset Girl]"; if (Zeny < [email protected]) { mes "Sorry, you don't have enough Zeny."; close; } mes "You can only reset "[email protected]+" time in your life, are you sure?"; if (select("Let me think:Thats fine") ==1) close; set Zeny, [email protected]; ResetStatus; mes "There you go!"; set [email protected],[email protected]+1; close; }else goto Limit; case 3: if ([email protected] < [email protected]){ mes "[Reset Girl]"; if (Zeny < [email protected]) { mes "Sorry, you don't have enough Zeny."; close; } mes "You can only reset "[email protected]+" time in your life, are you sure?"; if (select("Let me think:Thats fine") ==1) close; set Zeny, [email protected]; sc_end SC_ALL; ResetSkill; ResetStatus; mes "There you go!"; set [email protected],[email protected]+1; close; }else goto Limit; case 4: close; } Limit: mes "[Reset Girl]"; mes "Sorry, you can only reset "[email protected]+" time in your life."; close; } Check mo nlang po ito Not yet tested ehh... Sana makatulong ^^ Edited August 7, 2014 by GodKnows Jhomz Quote Link to comment Share on other sites More sharing options...