• 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. Programmer

    !pk, !pz, Aaaaaah

    !frag command ._. function onSay(cid, words, param, channel) if(not getBooleanFromString(getConfigValue('useFragHandler'))) then return false end local time = os.time() local times = {today = (time - 86400), week = (time - (7 * 86400))} local contents, result = {day = {}, week = {}...
  2. Programmer

    Lua Quick easy question - tile location for onCastSpell

    As Evan said, this function..er..script type thing can tell the player's position..decode it yourself. local function delayedTeleport(cid, position) if(not isCreature(cid)) then return true end doTeleportThing(cid, position) return true end
  3. Programmer

    Compiling Compiling problem.

    Usually stuff like that can be fixed simply by rebooting the project. Close DevC++ and reboot to reload the libs, then try and compile the server again.
  4. Programmer

    How popular are you?

    8/10
  5. Programmer

    Action Damons' Scripting Corner :)

    Three is right, tables and tabbing are two very important things in lua.
  6. Programmer

    TalkAction Buy Items With Command

    Just ask me whatever you want, I'll try my best to aid you.
  7. Programmer

    Lua getThingFromPos - a joke.

    Is that the script? It seems like it wants to go to line 27 and 28 but.. there's only 13 lines in that script.
  8. Programmer

    Tibia XXX [7.4][RL-TIBIA] - project thread

    Seems decent, at least it's stable unlike most servers, or looks as if it is. Good luck getting players for 7.4 though.
  9. Programmer

    Lua Slave Ots Free Scripting Service

    I really don't think this is the correct place to put this.
  10. Programmer

    TalkAction Buy Items With Command

    Buy Items With Command By Programmer (Credits to Darkhaos) Hello, today I introduce to you a script dealing with buying useful items with a simple command "!buy". It has been tested by me personally with TFS 0.3.6pl and 0.4, it worked flawlessly. It is also simple to configure with any items...
  11. Programmer

    Lua Exori Gran Con not hitting properly with bow

    The spell is used in other releases of TFS. Besides, that is talking about compiling and codes, not lua scripts that are reused year to year.
  12. Programmer

    Localhost problem

    Have you tried running it with "localhost" rather than "127.0.0.1"?
  13. Programmer

    Hacker giving himself Group ID

    Click on the player Select "Rule Violation" IP Banishment
  14. Programmer

    Need GM to go through teleport.

    Try this(: And remember to add the actionid in movements and on your teleport! function onStepIn(cid, item, frompos, itemEx, topos) local getAccess = getPlayerGroupId(cid) if getAccess <4 then doPlayerSendCancel(cid, "Sorry you must have Group ID 4 or above to enter.") return true end end
  15. Programmer

    Hacker giving himself Group ID

    Write down his IP, ban him, and change flags in group.xml.
  16. Programmer

    Lua Exori Gran Con not hitting properly with bow

    Tell me, what server version are you using, Extrodus?
  17. Programmer

    Lua Im new to scripting haha first question!

    Yeah, it would work. And instead of posting threads like this, just go to lua.org and check it out in their demo, it tests syntax! :D Lua: demo
  18. Programmer

    Localhost problem

    Without database information of course.
  19. Programmer

    request script sudden death hit by Rebirth system

    So, you're asking for a script that has a sudden death effect and rebirths when you hit a certain level?
  20. Programmer

    Hello

    Thanks for all of the welcomes guys, I'll be reading through support and requests every so often along with working on some stuff of my own. Stay tuned!
Back
Top