• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Account manager problem TFS 0.36pl1

Xeo

Zote
Joined
Jun 14, 2009
Messages
129
Solutions
1
Reaction score
2
Location
Chile
All new accounts created with account manager are free...How can I give 2 premium days to every free account made with account manager?
 
In creaturescripts.xml add
Code:
	<event type="login" name="Premmy" event="script" value="Premmylogg.lua"/>
In login.lua add
Code:
	registerCreatureEvent(cid, "Premmy")
Premmylogg.lua
Lua:
local config ={
	days = 2 --Edit how many days
}
function onLogin(cid)
	db.executeQuery("UPDATE `accounts` SET `premdays` = `premdays` + ".. config.days .." WHERE premdays = 0;")
return TRUE
end
This worked, I tested already :thumbup:
 
Last edited:
Hmm but when for someone end's premmy days then it again will be have 2 days.

Will be better when you change that for first login it adding 2 premmy days
 
Back
Top Bottom