Nottinghster
Tibia World RPG Developer
- Joined
- Oct 24, 2007
- Messages
- 1,618
- Solutions
- 6
- Reaction score
- 537
- Location
- Brazil - Rio de Janeiro
- GitHub
- Nottinghster
Hello OTland!
I need a help, look this:
15:18 You have 59 days left of VIP account.
15:18 Your VIP ends in 31/12/1969 at 22:00:58.
The time and date is wrong, I want to fix it, but don't know how...
Now the code:
Thanks!
I need a help, look this:
15:18 You have 59 days left of VIP account.
15:18 Your VIP ends in 31/12/1969 at 22:00:58.
The time and date is wrong, I want to fix it, but don't know how...
Now the code:
Code:
if isPlayerVip(cid) == TRUE then
dataFormat = os.date("%d/%m/%Y", getPlayerVipDays(cid))
horaFormat = os.date("%X", getPlayerVipDays(cid))
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You have ".. getPlayerVipDays(cid)+1 .." days left of VIP account.")
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Your VIP ends in ".. dataFormat .." at ".. horaFormat ..".")
else
end
Thanks!