• 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!

Login.lua If Premium Acc Then Message

paweleq2000

New Member
Joined
Feb 18, 2011
Messages
161
Reaction score
4
Hello,
I need script in login.lua
When you have premium account then you got green message on Center of the Tibia client
"You have got 10% more experience from premium account"
 
Please share your distro version and your code in future posts
> Rules for the Support board

TFS 0.4
Code:
if isPremium(cid) then
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are enjoying a 10% experience boost as premium benefit.")
end

TFS 1.2 (not tested, should work)
Code:
if player:isPremium() then
        player:sendTextMessage(MESSAGE_INFO_DESCR, "You are enjoying a 10% experience boost as premium benefit.")
end
 
Last edited:
Back
Top