Jump to content

Pa help naman po ako dito


Recommended Posts


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  06/02/13
  • Last Seen:  

pa help naman ako dito.hindi ko kasi mapagana.



//============================================================


prontera,150,193,4 script Reset Girl 124,{


// Skills, Stats, Both, Limit
set .@Reset, 5000, 5000, 9000, 1;
mes "[Reset Girl]";
if(.@Reset[3] && reset_limit > .@Reset[3]) {
mes "Sorry you can only reset "+.@Reset[3]+" time in your life.";
close;
}
mes "I am the Reset Girl.";
mes "Reset Stats: "+ callfunc("F_InsertComma",.@Reset[1]) +"z";
mes "Reset Skills: "+ callfunc("F_InsertComma",.@Reset[0]) +"z";
mes "Reset Both: "+ callfunc("F_InsertComma",.@Reset[2]) +"z";
mes "Please select the service you want:";
next;
set .@i,(select("^FF3355Reset Skills:Reset Stats:Reset Both^000000:Cancel"));
if(.@i > 3) close;
mes "[Reset Girl]";
if (Zeny < .@Reset[.@i-1]) {
mes "Sorry, you don't have enough Zeny.";
close;
}
if(.@Reset[3]){
mes "You can only reset "+.@Reset[3]+" time in your life, are you sure?";
if(select("Let me think:Thats fine") == 1) close;
}
set Zeny, Zeny-.@Reset[.@i];
if(.@i&1){
sc_end SC_ALL;
ResetSkill;
}
if(.@i&2) ResetStatus;
mes "There you go!";
if(.@Reset[3]) set reset_limit,reset_limit + 1;
close;
}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  38
  • Topics Per Day:  0.01
  • Content Count:  333
  • Reputation:   67
  • Joined:  09/05/12
  • Last Seen:  

prontera,150,193,4	script	Reset Girl	124,{

// Skills, Stats, Both, Limit
OnInit:
set .@st,5000;
set .@sk,5000;
set .@both,9000;
set .@limit,1; 

mes "[Reset Girl]";
mes "I am the Reset Girl.";
mes "Reset Stats: "+.@st+"z";
mes "Reset Skills: "+.@sk+"z";
mes "Reset Both: "+.@both+"z";
mes "Reset Limit: "+.@limit;
mes "Please select the service you want:";
next;
switch(select("^FF3355Reset Skills:Reset Stats:Reset Both^000000:Cancel"));
	case 1:
		mes "[Reset Girl]";
	if (.@reset < .@limit){
		if (Zeny < .@sk) {
			mes "Sorry, you don't have enough Zeny.";
			close;
		}
	mes "You can only reset "+.@limit+" time in your life, are you sure?";
	if (select("Let me think:Thats fine") ==1) close;
		set Zeny, Zeny-.@sk;
		sc_end SC_ALL;
		ResetSkill;
		mes "There you go!";
		set .@reset,.@reset+1;
		close;
	}else goto Limit;
	case 2:
	if (.@reset < .@limit){
		mes "[Reset Girl]";
		if (Zeny < .@st) {
			mes "Sorry, you don't have enough Zeny.";
			close;
		}
	mes "You can only reset "+.@limit+" time in your life, are you sure?";
	if (select("Let me think:Thats fine") ==1) close;
		set Zeny, Zeny-.@st;
		ResetStatus;
		mes "There you go!";
		set .@reset,.@reset+1;
		close;
	}else goto Limit;
	case 3:
	if (.@reset < .@limit){
		mes "[Reset Girl]";
		if (Zeny < .@both) {
			mes "Sorry, you don't have enough Zeny.";
			close;
		}
	mes "You can only reset "+.@limit+" time in your life, are you sure?";
	if (select("Let me think:Thats fine") ==1) close;
		set Zeny, Zeny-.@both;
		sc_end SC_ALL;
		ResetSkill;
		ResetStatus;
		mes "There you go!";
		set .@reset,.@reset+1;
		close;
	}else goto Limit;
	case 4:
		close;
	}

Limit:
    mes "[Reset Girl]";
    mes "Sorry, you can only reset "+.@limit+" time in your life.";
    close;
} 

Check mo nlang po ito :) Not yet tested ehh...

Sana makatulong ^^

Edited by GodKnows Jhomz
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
Reply to this topic...

×   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...