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

[10.77][TFS 1.2] ORTS, a real map project

y9ft.png


Where to get that layout?
 
>>own custom layout
>>he did it by him self

That's why it looks like ShadowCores template? xd
 
Register the talkaction in talkactions.xml if you haven't done that already.
Code:
<talkaction words="/save" script="save.lua"/>

Or use global save.

Alright, i'm back!
The global save worked, it warned 5, 3 and 1 minute before and when it saved it kicked everyone from the server.

Can i just take the save.lua from another tfs distro and add it to talkaction scripts or wouldnt that be compatible with 1.0?
 
Alright, i'm back!
The global save worked, it warned 5, 3 and 1 minute before and when it saved it kicked everyone from the server.

Can i just take the save.lua from another tfs distro and add it to talkaction scripts or wouldnt that be compatible with 1.0?
This were originally from the GitHub repository, must have missed when it got removed. xd
Code:
local savingEvent = 0

function onSay(cid, words, param)
    if getPlayerAccess(cid) ~= 0 then
        if isNumber(param) == TRUE then
            stopEvent(savingEvent)
            save(tonumber(param) * 60 * 1000)
        else
            saveServer()
        end
    end
end

function save(delay)
    saveServer()
    if delay > 0 then
        savingEvent = addEvent(save, delay, delay)
    end
end
 
the acc or the server does not have the Group Ids i cant create them, what to do
 
Anyone managed to fix the underpowered healingspells and the EXTREMELY fast advancing paladin skill? (one hit, 170 dist etc)
 
Code:
-- Connection Config
ip = "127.0.0.1"
bindOnlyGlobalAddress = "no"
loginProtocolPort = 7171
gameProtocolPort = 7172
adminProtocolPort = 7171
statusProtocolPort = 7171
maxPlayers = "1000"
motd = "Welcome to The Forgotten Server!"
onePlayerOnlinePerAccount = "yes"
allowClones = "no"
serverName = "Thais"
adminLogsEnabled = "no"
statusTimeout = 60000
replaceKickOnLogin = "yes"
maxPacketsPerSecond = 25

Does anything look wrong in this code? I can't connect to the server at all. Ports are open :/


Anybody? Is there a reason this shouldnt reach the world wide web?
 
So what is the problem? you can login but not others?
 
Back
Top