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

Search results

  1. amoeba13

    Assertion Failed

    This god damn error appears 3 or 4 time a day in my server and, everytime it shuts my server down. Does anyone know how to fix it??
  2. amoeba13

    Help with this error: assertion failed

    Can someone please help me? Sometimes it appears this error in my console: assertion failed: delay, file ../scheduler.h And everytime, it shutdown my server.
  3. amoeba13

    Limit deaths

    Here you go. I didn't test it yet: function onDeath(cid, corpse, deathList) if getPlayerStorageValue(cid, 348129) == 29 then doAddPlayerBanishment(account, PLAYERBAN_BANISHMENT, 24 * 3600, 23, ACTION_BANISHMENT, "You have ben banned for dying 30 times", getPlayerGUID(cid), 1)...
  4. amoeba13

    Not attackable by players if ur wearing a certain item

    Here you go: function onTarget(cid, target) if getPlayerSlotItem(target,slot).itemid == 2160 then-- item ID t doPlayerSendCancel(cid, "You may not attack this player because he is wearing the item.") return false end end
  5. amoeba13

    function getPlayersInArea

    I actually made this for 0.3.6 because this is the version I use... Anyway, would it be better if I used getThingFromPos?
  6. amoeba13

    function getPlayersInArea

    Oh so this is tabbing, I'm brazilian and I know it as "identar". I tabbed this script but when I posted it here, it came up like this =S
  7. amoeba13

    function getPlayersInArea

    I never said I was the first one to make a script like this. I just made it and wanted to share... What do you mean with tab? Thanks for the advice, but what if I use getThingFromPos? (I know i'd have to put the stackpos=253)
  8. amoeba13

    function getPlayersInArea

    Hello guys, today I made a very useful function and decided to post it here. It's name is getPlayersInArea, what it does? It gets the players in an area... @@EDIT - Sorry guys, when I first posted it, there was an error. Now its fixed. function getPlayersInArea(fromPos, toPos) -- function by...
  9. amoeba13

    [TFS 1.0 / 1.2] LUA Functions

    Here it is: local cd = 30 -- How long after the broadcast will the map be cleaned? in seconds function onTime(interval) broadcastMessage("Game map will be cleaned in ".. cd .." seconds. Mind it may freeze.") addEvent(cleanMap, cd*1000) addEvent(broadcastMessage, cd+1*1000, "Game...
  10. amoeba13

    Problems with blacklist?

    Hello guys, i'm having such an annoying problem... Everytime I open my TFS i receive this message "Unable to fetch blacklist. Continue? y/n". I know all I have to do is press y and enter but I use an auto restarter and I'm not always on PC to do this. I've been told that blacklist is an OtLands...
Back
Top