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

TFS 1.2 [Tibia 10.77] How to give all acceses/outfits/mounts

dudiguru

New Member
Joined
May 27, 2015
Messages
19
Reaction score
0
Hi guys, I recently started my adventure with OTS. I got ORTS, and it works fine. (with UniServerZ database)

And I was wondering, is it possible to give player all acceses+outifts+mounts? Because doing it all manualy would consume a lot of time...
 
I presume your players create their characters through a website? The most logical solution would be to modify the storage in the creation, or in a login script. How do you add them manually? I presume a talkaction, you can take that script and paste it into the firstitems.lua file that usually exists in the creaturescripts folder, and they will recieve these things the first time they login.

Ignazio
 
By manually I meant walking, colecting items and talking to npc's. I sadly don't have any script to do it. I am comlete newbie and just have few characters that I want to give all acceses/addons. Like with GM but without actualy being one.
 
It is possible if someone write a talkaction script that gives all mounts and addons for a player example /giveall playername.
You can find scripts for adding addons and mounts but you will add them one by one not all.
 
/addon playername
/mount playername
about the access, you are crazy ? '---' is alot of time to make it, get all storages is hard
 
So I will somehow get all addons and outfits, but acceses is a harder task? Maybe there is a way to turn off all acceses,so every player can freely enter any place?
 
If you want to all players have commands like gms go to talkactions folder and remove all where is sth like is_god or similar thing.

@edit

I think you need to remove this
Code:
if player:getAccountType() < ACCOUNT_TYPE_GOD then
return false
end
 
By acceses I meant walking in tps and such. Without doing quest. It is small server for few friend,just to kill some mobs from time to time.
 
Why not put something like this in login.lua ?

Code:
    for i = 1, 77 do
        player:addMount(i)
    end

Red
 
Back
Top