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

[8.7] The Forgotten Server v0.2.10 (Mystic Spirit)

Status
Not open for further replies.
Haha I realize how stupid that seems, because when I was asking the question I did not know.
But then I started using my brain ;)...

it also has functions like, kick players, ban players, change pvp mode, reload global events, save server and many more.
 
How i can have a anti mage bot system once tfs 0.2 doesnt have getPlayerIp function?
 
it was 8.71 now 8.70?? or what happend o_O
 
i need getPlayersByIp too =S
i'm looking for a anti-mc/mage bomb script =x
 
I'm using this script to prevent crashes by mage bomb
Code:
local config = {
        seconds = 3,            -- in seconds
        onlyWithSameIP = "yes" -- will work for all players ("no"), or only check player with same IP? ("yes")
}
 
--DONT MODIFY
config.onlyWithSameIP = getBooleanFromString(config.onlyWithSameIP)
 
local m_lastLogin, m_lastIP = 0, 0
 
function onLogin(cid)
        local timeNow, playerIP = os.time(), getPlayerIp(cid)
        if(m_lastLogin + config.seconds >= timeNow and
                (config.onlyWithSameIP == FALSE or m_lastIP == playerIP)) then
                return FALSE
        end
 
        m_lastIP = playerIP
        m_lastLogin = timeNow
        return TRUE
end
but it has a not working funcion getBooleanFromString

HOW I CAN HAVE A WORKING ANTI MAGE BOMB???

Someone help me plesase =s
 
I'm using this script to prevent crashes by mage bomb
Code:
local config = {
        seconds = 3,            -- in seconds
        onlyWithSameIP = "yes" -- will work for all players ("no"), or only check player with same IP? ("yes")
}
 
--DONT MODIFY
config.onlyWithSameIP = getBooleanFromString(config.onlyWithSameIP)
 
local m_lastLogin, m_lastIP = 0, 0
 
function onLogin(cid)
        local timeNow, playerIP = os.time(), getPlayerIp(cid)
        if(m_lastLogin + config.seconds >= timeNow and
                (config.onlyWithSameIP == FALSE or m_lastIP == playerIP)) then
                return FALSE
        end
 
        m_lastIP = playerIP
        m_lastLogin = timeNow
        return TRUE
end
but it has a not working funcion getBooleanFromString

HOW I CAN HAVE A WORKING ANTI MAGE BOMB???

Someone help me plesase =s

Edit line 3 to:
Code:
onlyWithSameIP = true

and remove the line 7:
Code:
config.onlyWithSameIP = getBooleanFromString(config.onlyWithSameIP)
 
I'm using this script to prevent crashes by mage bomb
Code:
local config = {
        seconds = 3,            -- in seconds
        onlyWithSameIP = "yes" -- will work for all players ("no"), or only check player with same IP? ("yes")
}
 
--DONT MODIFY
config.onlyWithSameIP = getBooleanFromString(config.onlyWithSameIP)
 
local m_lastLogin, m_lastIP = 0, 0
 
function onLogin(cid)
        local timeNow, playerIP = os.time(), getPlayerIp(cid)
        if(m_lastLogin + config.seconds >= timeNow and
                (config.onlyWithSameIP == FALSE or m_lastIP == playerIP)) then
                return FALSE
        end
 
        m_lastIP = playerIP
        m_lastLogin = timeNow
        return TRUE
end
but it has a not working funcion getBooleanFromString

HOW I CAN HAVE A WORKING ANTI MAGE BOMB???

Someone help me plesase =s

I don't belive that tala didn't patched that memory leak with spells so this script is most likely unnecessary.
 
Why didnt u just make it TFS V0.3.0?
 
hello,
I create a private server but when i say my charcter It say:
Account Manager: That name seems to contain invalid symbols tell me another name.

I try server 8.54 and server 8.7.


Can you help me¿?
thanks.
 
Try create account, my server is ip:213.4.32.55 port:7171
what is the admin account¿?
 
@albertobozal

Do not use "1" in account password when trying to make account...
 
thanks,but
I put 1/1 and create a new account.after I loggin I say account , charcter, and i can't creat pj becouse say: h:min Account Manager: That name seems to contain invalid symbols tell me another name.

version 8.7 try to create a pj.
 
@albertobozal

Don't log with 1/1, just leave account and password blank and just press enter.
 
THANKS, but...
I have done. but when loggin with my numers and passowrd and creat a acoount look this:
00:50 Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.
I say: account
00:51 Account Manager: Do you want to change your 'password', request a 'recovery key', add a 'character', or 'delete' a character?
i say: character
00:51 Account Manager: What would you like as your character name?
I say albocal
00:51 Account Manager: That name seems to contain invalid symbols tell me another name.

:S
 
Status
Not open for further replies.
Back
Top