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

Storywriter FREE ACCESS QUEST

paulvzla

New Member
Joined
Jun 20, 2015
Messages
23
Reaction score
4
Im looking for someone to teach me how to Free and acces or quest for my server, or someone who is interested on do it for me for a price!
Thank You :)
 
Hello, what do you mean?
Do you need someone to make quests for you?
Do you need someone to let everyplayer already have some quests done when create account?
And, which TFS are you using?
 
Hello, what do you mean?
Do you need someone to make quests for you?
Do you need someone to let everyplayer already have some quests done when create account?
And, which TFS are you using?
Do you need someone to let everyplayer already have some quests done when create account?
Yes!
And, which TFS are you using?
1.3 otservbr
 
I can help you, its not a big deal.
Just go on

data/scripts/creaturescripts/customs/free_quests.lua and add the storages you need people to already have.

And set this on your config.lua:

freeQuests = true
 
Do you need someone to let everyplayer already have some quests done when create account?
Yes!
And, which TFS are you using?
1.3 otservbr

This hardly needs to be a paid job. But a good opportunity to learn some basic lua scripting.

On your firstitems.lua script for fresh characters first login, just add a bunch of lines for all the quests you want to set to complete.

Eg, Rashid Completed on new chars

player:setStorageValue(Storage.TravellingTrader.Mission01, 2)
player:setStorageValue(Storage.TravellingTrader.Mission02, 5)
player:setStorageValue(Storage.TravellingTrader.Mission03, 3)
player:setStorageValue(Storage.TravellingTrader.Mission04, 3)
player:setStorageValue(Storage.TravellingTrader.Mission05, 2)
player:setStorageValue(Storage.TravellingTrader.Mission06, 2)
player:setStorageValue(Storage.TravellingTrader.Mission07, 1)

Completed Djinns something like
player:setStorageValue(Storage.DjinnWar.MaridFaction.Mission03, 3)

You'd need to check there are variables set for all the quest trees like Storage.DjinnWar.MaridFaction.Mission03 or use the quest IDs instead.

Alternativly, you could just open up all your NPC files and remove the check to see if the quest is complete or not.
 
Last edited:
This hardly needs to be a paid job. But a good opportunity to learn some basic lua scripting.

On your firstitems.lua script for fresh characters first login, just add a bunch of lines for all the quests you want to set to complete.

Eg, Rashid Completed on new chars

player:setStorageValue(Storage.TravellingTrader.Mission01, 2)
player:setStorageValue(Storage.TravellingTrader.Mission02, 5)
player:setStorageValue(Storage.TravellingTrader.Mission03, 3)
player:setStorageValue(Storage.TravellingTrader.Mission04, 3)
player:setStorageValue(Storage.TravellingTrader.Mission05, 2)
player:setStorageValue(Storage.TravellingTrader.Mission06, 2)
player:setStorageValue(Storage.TravellingTrader.Mission07, 1)

Completed Djinns something like
player:setStorageValue(Storage.DjinnWar.MaridFaction.Mission03, 3)

You'd need to check there are variables set for all the quest trees like Storage.DjinnWar.MaridFaction.Mission03 or use the quest IDs instead.

Alternativly, you could just open up all your NPC files and remove the check to see if the quest is complete or not.
never heard this way before, im gonna test it ! Thank You :) !
 
Back
Top