• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

[Knowledge]Quest System 7.1 (Unique Items until Server Save) | Quest which could be only done once!

Danger II

tibiara.com
Joined
Nov 21, 2012
Messages
1,773
Solutions
13
Reaction score
707
Location
Germany
Dear OTlanders,

I need some help with the quest system of Tibia 7.1, some quests could be done only once per server save (no quest box).

Can you tell me which quests it was?

I am willing to pay well for helping..

PM me or just write down here..
 
function onUse(cid, item, fromPosition, itemEx, toPosition)
local daysvalue = 1 * 24 * 60 * 60
local daily = getPlayerStorageValue(cid, 13541)
if (daily == -1) then
daily = 0
end
if getPlayerStorageValue(cid, 13540) - os.time() <= 0 then
doPlayerAddItem(cid, 2160, 1)
time = os.time() + daysvalue
setPlayerStorageValue(cid, 13540, time)
setPlayerStorageValue(cid, 13541, daily+1)
local daily = getPlayerStorageValue(cid, 13541)
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You done your " .. daily .. " Daily Quest. You got 1 cc.")
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You must wait 24 Hours to get your daily quest. Next avaiable will be at: " .. os.date("%H:%M:%S", getPlayerStorageValue(cid, 13540)) .. ".")
end
return true
end

Instead of player storage use world storage if you want only 1 person to be able to do it each day :P
Credits to Fresh
 
I could have done this also but I prefer trying to remap Stuff which was there in 7.1..
So if someone remember quests from 7.1 which could be done only once per Server save, feel free to reply..

Thanks @JoccE anyway :)
 
THat is what i told you :P change the PlayerStorage to worldStorage and only one person per 24h can do it on the whole server
 
Back
Top