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

Linux Simple questions about TFS 1.0

ximmy

Member
Joined
Oct 31, 2009
Messages
374
Reaction score
6
How make save server? (/save not working)

How set distance push item for god?
 
1. How make save server? (/save not working)
2. How set distance push item for god?
3. How enable mounts in pz?
 
1- Global save
2- Don't have ( if have is flag )
3- Don't have in config.lua
 
1. Where is lua script?

2.
I change flags from this
Code:
<?xml version="1.0" encoding="UTF-8"?>
<groups>
   <group id="1" name="player" flags="0" access="0" maxdepotitems="0" maxvipentries="0" />
   <group id="2" name="gamemaster" flags="137438953471" access="1" maxdepotitems="0" maxvipentries="200" />
   <group id="3" name="god" flags="127540697997304" access="1" maxdepotitems="0" maxvipentries="200" />
</groups>

to ( 0.4 )

Code:
<?xml version="1.0" encoding="UTF-8"?>
<groups>
   <group id="1" name="player" flags="0" access="0" maxdepotitems="0" maxvipentries="0" />
   <group id="2" name="gamemaster" flags="137438953471" access="1" maxdepotitems="0" maxvipentries="200" />
   <group id="3" name="god" flags="39579197349882" access="1" maxdepotitems="0" maxvipentries="200" />
</groups>

and still distance push not working

3. In confing.lua anywhere find "mount"
 
1.
<talkaction words="/save" script="save.lua" />

Code:
function onSay(cid, words, param)
if not player:getGroup():getAccess() then
     return true
   end

   if Player(cid):getAccountType() >= ACCOUNT_TYPE_GAMEMASTER then
     saveServer()
     return false
   end
return true
end

2. source edit
3. probably flag with other gm rights or source edit
 
Last edited:
Back
Top