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

Search results

  1. Ryxy

    Solved Problems when someone CAST "Stronghaste" on CTF.

    Well I already fix it, and now its works perfectly. I've removed few doChangeSpeed(cid, getTheSpeed(getPlayerLevel(cid)) - getCreatureSpeed(cid)) and now its works. Thanks anyway. <3
  2. Ryxy

    TFS Allocation failed

    Well, I gave you a possible solution. So, you can also use Linux version or compile it to 64bits. :) Remember Windows32B only can support 92-95MB of Map. If it weight more than that you will need use any of these solution.
  3. Ryxy

    Solved Problems when someone CAST "Stronghaste" on CTF.

    @Limos Doenst work. I've tried with "getCreaturePosition", getThingPos, getPlayerPosition. NVM, I'll doChangeSpeed functions when player take "Flag". And it should works 100%. Thanks anyway!
  4. Ryxy

    Solved Problems when someone CAST "Stronghaste" on CTF.

    @Limos I already replaced: function isInRange(position, fromPosition, toPosition) return (position.x >= fromPosition.x and position.y >= fromPosition.y and position.z >= fromPosition.z and position.x <= toPosition.x and position.y <= toPosition.y and position.z <= toPosition.z) end Same...
  5. Ryxy

    Port>how

    What you coulnd't do? :/ This should work for Rutter HG532n.
  6. Ryxy

    Lua tfs 0.3.6! 8.6 Statue addons!

    \o/ mine also works. Without download anything.
  7. Ryxy

    TFS Allocation failed

    The problem is a limitation within the 32-bit architecture. You dont need to compile it as 64bits. Try to use Laatido. It should work. http://otland.net/attachments/laatido-rar.4406/
  8. Ryxy

    TFS Allocation failed

    It appears once time you try to run.exe?
  9. Ryxy

    Lua tfs 0.3.6! 8.6 Statue addons!

    Add actionID on statue.(Not tested) Items = XXXX (IDitem), X (Count). local config ={ [4001]={ name ="First Citizen Addon",-- name addon_type =1,-- addon outfit ={136,128},-- female / male cost =0,-- cost items ={{5878,100}},-- items }, [4002]={ name...
  10. Ryxy

    Port>how

    Remove all NAT Ports OPEN. On Windows/CMD write this command: NCPA.CPL You should know what is your PORT Global IP. (If not CMD/ipconfig -all) -properties/ net4v TPC/IPV4 On this step do you need to know your "DMZ Host IP Address" ____ IP: 192.168.1.X (DMZ Host IP Address) 255.255.255.0...
  11. Ryxy

    MOD Zombie event

    @freddzor11 You have to move away from them like "Last man standing" It should work. Which version are you using?
  12. Ryxy

    Lua tfs 0.3.6! 8.6 Statue addons!

    Actions Folder <action uniqueid="XXX" event="script" value="SCRIPTname.lua"/> Then add ActionID on Item. or: (IN-game) /attr actionid
  13. Ryxy

    Need Help making Customclient and website

    Check on http://otland.net/forums/basic.479/ there are many tutorials.
  14. Ryxy

    MOD Zombie event

    Every two hours. EASY Way. (Clean way) ['Tuesday'] = {'00:00:00'}, ['Tuesday'] = {'02:00:00'}, ['Tuesday'] = {'04:00:00'}, ['Tuesday'] = {'06:00:00'}, ['Tuesday'] = {'08:00:00'}, ['Tuesday'] = {'10:00:00'}, ['Tuesday'] = {'12:00:00'}, ['Tuesday'] = {'14:00:00'}, ...
  15. Ryxy

    MOD Zombie event

    Yes, you have to be in PZ to use talkaction. !zombie join You can also start it with "God" / !startzombie <talkaction words="!startzombie" access="5" event="script"> You have to config- delayTime = 1.0, -- time in which players who joined to event are teleporting to teleport position [minutes]...
  16. Ryxy

    Solved Problems when someone CAST "Stronghaste" on CTF.

    if isInRange(getPlayerPosition(cid), {x = 31958, y = 32417, z = 7}, {x = 32040, y = 32496, z = 7}) then -- event area doPlayerSendCancel(cid, "You can't use this here.") return false end You forget "then" I think. Edit: No, it still doenst work. #Error/
  17. Ryxy

    Lua Hermesquestsytem

    Try this. function onUse(cid, item, fromPosition, itemEx, toPosition) if getPlayerCustomFlagValue(cid, PlayerCustomFlag_GamemasterPrivileges) then return doPlayerSendCancel(cid, "You may not open this chest.") end local v = { [1990] = {storage = 30015}, [2400] = {storage = 30015}, [2431] =...
  18. Ryxy

    Can you help me manage this problem: hours are minutes etc.

    Try this. Items.xml <item id="2640" article="a" name="pair of soft boots"> <attribute key="weight" value="800" /> <attribute key="slotType" value="feet" /> <attribute key="decayTo" value="10021" /> <attribute key="transformDeEquipTo" value="6132" />...
  19. Ryxy

    MOD Zombie event

    Use this one. Zombie Event 3.0 by Talkactions. http://pastebin.com/90xT8WYT -Doenst need teleport, just !talkactions (!zombie join)
  20. Ryxy

    Solved Problems when someone CAST "Stronghaste" on CTF.

    @UP / updated. Script: http://wklej.org/id/1536707/ Thanks.
Back
Top