Jump to content
  • 0

1 Freebies Per Account


Ninjamon

Question


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  295
  • Reputation:   2
  • Joined:  03/06/12
  • Last Seen:  

How can i make this to give 1 freebies only per account?

farebury,163,127,3	script	Freebies Giver	790,{
if( !Freebies ){
set Freebies,1;
mes "Welcome to Tantrums RO!";
mes "Here are your freebies.";
mes "Enjoy!";
savepoint "farebury",150,136;
getitem 20127,1;
getitem 20050,1;
getitem 20099,1;
getitem 7037,5;
getitem 671,1;
getitem 4142,1;
getitem 2375,1;
getitem 2433,1;
getitem 2537,1;
getitem 2729,2;
getitem 2374,1;
announce "Welcome to Tantrums Ragnarok, "+strcharinfo(0)+" !","0x33FF66";

}else{
mes "You already claimed the Freebies.";
savepoint "farebury",150,136;
}
close;


OnInit:
	waitingroom "Freebies for Newbies!",0;
	end;
}

 

 

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  04/20/17
  • Last Seen:  

On 2/22/2013 at 11:28 AM, ragnazorg said:

here

 

 


-    script    Freebies    -1,{

OnPCLoginEvent:
    if (!#Freebies) {
        getitem 20127,1;
        getitem 20050,1;
        getitem 20099,1;
        getitem 7037,5;
        getitem 671,1;
        getitem 4142,1;
        getitem 2375,1;
        getitem 2433,1;
        getitem 2537,1;
        getitem 2729,2;
        getitem 2374,1;
        announce "Welcome to Tantrums Ragnarok, "+strcharinfo(0)+" !","0x33FF66";
        set #Freebies, 1;
    }
    end;
    
}

where should i put this script? sorry first time creating my own server.. haha

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  1137
  • Reputation:   290
  • Joined:  04/29/13
  • Last Seen:  

8 minutes ago, JhamBytes said:

where should i put this script? sorry first time creating my own server.. haha

 

add it as npc script

check this link for guide 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  83
  • Reputation:   8
  • Joined:  12/27/11
  • Last Seen:  

Add '#' prefix to your Freebie variable.

"#"      - A permanent local account variable.
           They are stored with all the account data in "save\accreg.txt" in
           TXT versions and in the SQL versions in the 'global_reg_value'
           table using type 2.

/trunk/doc/script_commands.txt

Edited by arzzzae
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  295
  • Reputation:   2
  • Joined:  03/06/12
  • Last Seen:  

#set Freebies,1; ?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  83
  • Reputation:   8
  • Joined:  12/27/11
  • Last Seen:  

if( !#Freebies ){

set #Freebies,1;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  21
  • Topics Per Day:  0.00
  • Content Count:  250
  • Reputation:   44
  • Joined:  11/13/11
  • Last Seen:  

here

 

 

-    script    Freebies    -1,{

OnPCLoginEvent:
    if (!#Freebies) {
        getitem 20127,1;
        getitem 20050,1;
        getitem 20099,1;
        getitem 7037,5;
        getitem 671,1;
        getitem 4142,1;
        getitem 2375,1;
        getitem 2433,1;
        getitem 2537,1;
        getitem 2729,2;
        getitem 2374,1;
        announce "Welcome to Tantrums Ragnarok, "+strcharinfo(0)+" !","0x33FF66";
        set #Freebies, 1;
    }
    end;
    
}
Edited by ragnazorg
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  295
  • Reputation:   2
  • Joined:  03/06/12
  • Last Seen:  

Thanks :3

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
Answer this question...

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