Ninjamon Posted February 22, 2013 Group: Members Topic Count: 113 Topics Per Day: 0.02 Content Count: 295 Reputation: 2 Joined: 03/06/12 Last Seen: November 4, 2014 Share Posted February 22, 2013 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; } Quote Link to comment Share on other sites More sharing options...
0 JhamBytes Posted April 20, 2017 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 7 Reputation: 0 Joined: 04/20/17 Last Seen: April 21, 2017 Share Posted April 20, 2017 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 Quote Link to comment Share on other sites More sharing options...
0 Cyro Posted April 20, 2017 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 1138 Reputation: 290 Joined: 04/29/13 Last Seen: July 20, 2024 Share Posted April 20, 2017 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 Quote Link to comment Share on other sites More sharing options...
arzzzae Posted February 22, 2013 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 83 Reputation: 8 Joined: 12/27/11 Last Seen: March 7, 2018 Share Posted February 22, 2013 (edited) 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 February 22, 2013 by arzzzae Quote Link to comment Share on other sites More sharing options...
Ninjamon Posted February 22, 2013 Group: Members Topic Count: 113 Topics Per Day: 0.02 Content Count: 295 Reputation: 2 Joined: 03/06/12 Last Seen: November 4, 2014 Author Share Posted February 22, 2013 #set Freebies,1; ? Quote Link to comment Share on other sites More sharing options...
arzzzae Posted February 22, 2013 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 83 Reputation: 8 Joined: 12/27/11 Last Seen: March 7, 2018 Share Posted February 22, 2013 if( !#Freebies ){ set #Freebies,1; Quote Link to comment Share on other sites More sharing options...
ragnazorg Posted February 22, 2013 Group: Members Topic Count: 21 Topics Per Day: 0.00 Content Count: 250 Reputation: 44 Joined: 11/13/11 Last Seen: October 5, 2024 Share Posted February 22, 2013 (edited) 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 February 22, 2013 by ragnazorg Quote Link to comment Share on other sites More sharing options...
Ninjamon Posted February 22, 2013 Group: Members Topic Count: 113 Topics Per Day: 0.02 Content Count: 295 Reputation: 2 Joined: 03/06/12 Last Seen: November 4, 2014 Author Share Posted February 22, 2013 Thanks :3 Quote Link to comment Share on other sites More sharing options...
Question
Ninjamon
How can i make this to give 1 freebies only per account?
Link to comment
Share on other sites
7 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.