Jump to content
  • 0

Millionaire Raffle Event.


SevySevSevy

Question


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  54
  • Reputation:   0
  • Joined:  04/18/15
  • Last Seen:  

Hello, I would like to request an event script that would run every 3 days and will pick any random player online and reward them a certain amount of zeny lets say 100m zennies. The npc should announce who the lucky winner is too. 

TIA :) 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Developer
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1443
  • Reputation:   337
  • Joined:  10/17/12
  • Last Seen:  

try this one, i forget original writer credit goes to them, i just edited

-	script	LuckyRun	-1,{
OnHour12://time want event to run
if(gettime(5)%3) end;// 3 day check
	while(1){
		query_sql "select account_id from `char` where online = 1 order by rand() limit 1", .@aid;
		attachrid .@aid;
			if(CheckVending()) {
				DetachRID();
				continue;
			}
		announce "Congrats to, "+strcharinfo(0)+" a winner in the Lucky event!",bc_blue|bc_all;
		set zeny,zeny + 100000000;
		break;
	}
end;
}
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  54
  • Reputation:   0
  • Joined:  04/18/15
  • Last Seen:  

 

try this one, i forget original writer credit goes to them, i just edited

-	script	LuckyRun	-1,{
OnHour12://time want event to run
if(gettime(5)%3) end;// 3 day check
	while(1){
		query_sql "select account_id from `char` where online = 1 order by rand() limit 1", .@aid;
		attachrid .@aid;
			if(CheckVending()) {
				DetachRID();
				continue;
			}
		announce "Congrats to, "+strcharinfo(0)+" a winner in the Lucky event!",bc_blue|bc_all;
		set zeny,zeny + 100000000;
		break;
	}
end;
}

Ill try it out, thank you ~!

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