Jump to content
  • 0
Sign in to follow this  
RhamXIV

Hi guys ! please help me it sims my freebies npc is broken

Question

it keep telling that i got my freebies already even its a new account..

this is my script thank you !!

 

new_1-1,65,116,4    script    Belle    693,{

OnInit:

waitingroom "Freebies",0;

    

    if(#freebie_quest == 0){

    mes "[belle]";

    mes "Nice to meet you "+ strcharinfo ( 0 ) +", my name is Belle";

    mes "Welcome to ^E066FFCane RO!^000000";

    mes "I see that you're new here so to help you out I'd like to give you these";

    mes "items as a gift to show how much we appreciate you here!";

next;

    getitem 26090,1;

    getitem 20108,1;

    getitem 14001,20;

    getitem 12263,5;

    getitem 14592,5;

    getitem 7059,30;

    getitem 7060,30;

    set #freebie_quest,1;

    savepoint "prontera",156,191;

 

    close;

    }

 

if(#freebie_quest == 1) {

    mes "[belle]";

    mes "You already took your freebies!";

    mes "Have fun in ^E066FFCane RO!^000000";

    close;

    }

    

}

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Hello mate. Try this

 

new_1-1,65,116,4    script    Belle    693,{
    
    if(#freebie_quest == 0)
	{
    mes "[Belle]";
    mes "Nice to meet you "+ strcharinfo ( 0 ) +", my name is Belle";
    mes "Welcome to ^E066FFCane RO!^000000";
    mes "I see that you're new here so to help you out I'd like to give you these";
    mes "items as a gift to show how much we appreciate you here!";
	next;
    getitem 26090,1;
    getitem 20108,1;
    getitem 14001,20;
    getitem 12263,5;
    getitem 14592,5;
    getitem 7059,30;
    getitem 7060,30;
    set #freebie_quest,1;
    savepoint "prontera",156,191;
 
    close;
    }
 
	else
	{	
    mes "[Belle]";
    mes "You already took your freebies!";
    mes "Have fun in ^E066FFCane RO!^000000";
    close;
    }

OnInit:
waitingroom "Freebies",0;
end;    
	
}

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

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