Koe Script

arthurcunha1991

New member
Messages
20
Points
0
Age
34
Emulator
Client Version
20180620
Hello, could you help me?


how do I make the player even offline when they sign up to receive the Winning Guild Weekly award?


 





script event is coming down Thank you









View attachment koe.txt

 
Last edited by a moderator:
Add Sql table - WOE reward queue "Player ID" -  "Reward"

After every LogIn script:

Code:
if (LastLogin > LastRewardDate) close;
else {
	Load rewards for this Player;
	if (noReward) close;
	else {
		givereward;
	}
}
 
Code:
I did not understand, where do I put this function?

 





Code:
this function
Code:
Load rewards for this Player;





 
Last edited by a moderator:
Back
Top