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

    Compiling Unlimited HP/MP

    Well, that means he wants more money, some people are like that, they like they have that unique feature and are afraid of competition, I am not good at c++ I just know a little and I have a basic understanding of math calculation and int values unsigned and signed. I just did a "search in...
  2. dchampag

    Compiling Unlimited HP/MP

    As I said, this is a very long process and creates bugs, it's not that people don't want to share, it's the fact that, this is not useful enough to spend 20+ hours just to make a guide for. I'm sure this is the case with some people but like me, I have not completed it entirely as I said I still...
  3. dchampag

    Solved PVP Arena ( Need 2 player to fight bug)

    Okay I forgot that pic was there, that clearly shows the coordinates are incorrect. If you look at the format I said to you, you are using. for arenax = left X, top Y do for arenay = right X, bottom Y do so it is scanning from 880 - 1022 X instead of 880 - 888 x and scanning from 887 - 1029 Y...
  4. dchampag

    Compiling Unlimited HP/MP

    I have done this, and I'm still working out bugs it was not a fun process for someone who does not know c++ (me), the reason there is. It a guide is because it would take hours upon hours upon hours to make a successful easy guide that would help people do this, and most people do not find this...
  5. dchampag

    tfs 0.3.6 crash after switch to mysql

    I already know it's the .dll, I've tried compatability, it works for a minute, then does the same thing, all compatability does for it, is slow the server down.
  6. dchampag

    Solved PVP Arena ( Need 2 player to fight bug)

    alright then follow that format I showed above, you have the coordinates set wrong, the coordinates say that it will check the tiles the players are standing in when they pull the lever. so the coordinates are wrong.
  7. dchampag

    Lua CreatureEvents -> Teleport Player after 15 seconds.

    try this local Ppos = {x = 33327, y = 31589, z = 14} local time_to_pass = 15 -- in seconds local monstName = "Domnion" local function removeTeleport(killer) doTeleportThing(killer, Ppos) return TRUE end function onDeath(cid, corpse, killer) if isMonster(cid) then if...
  8. dchampag

    Solved [CreatureScripts] Need a little Help. Please

    Did you registerCreatureEvent in login.lua? Make sure you do that.
  9. dchampag

    /attr

    http://otland.net/threads/command-attr-in-lua-script-talkaction-you-can-add-more-functions.33438/
  10. dchampag

    /attr

    Just make custom command talkactions scripts all the functions are available, or find one on here and fix any errors it may have by updating to your 0.4 functions.
  11. dchampag

    tfs 0.3.6 crash after switch to mysql

    Change your libmysql.dll, that distro has always been like that. Switching that fixes it.
  12. dchampag

    Solved PVP Arena ( Need 2 player to fight bug)

    It's the coordinate for for arenax = TOPLEFTX, BOTTOMRIGHTX do for arenax = TOPLEFTY, BOTTOMRIGHTY do Use that format for the arena and make sure that if it's on a seperate floor for z you set the z position in local arenaPosition.
  13. dchampag

    Solved PVP Arena ( Need 2 player to fight bug)

    Now function onUse(cid, item, fromPosition, itemEx, toPosition) local firstPlayerPosition = {x = 889, y = 1025, z = 7, stackpos = STACKPOS_TOP_CREATURE} local getFirstPlayer = getThingFromPos(firstPlayerPosition) local secondPlayerPosition = {x = 889, y = 1027, z = 7, stackpos =...
  14. dchampag

    Lua Problem with Storage ID and Quest Log

    Here <quest name="The glasses" startstorageid="424242" startstoragevalue="1"> <mission name="Dougs glasses" storageid="424242" startvalue="1" endvalue="3"> <missionstate id="0" description="Doug asked you to find his glasses. He last saw them in Mount Minotaur."/>...
  15. dchampag

    Health & mana percent

    Yeah idk if it's because limits or what, but this works, but only works when the characters health is under a certain amount, which is pointless, point of using it is because players can't see their actual health. Any idea how to make it take % of higher amounts?
  16. dchampag

    Health & mana percent

    Thank you =), Now I just need mana and hp limit changed to int64
  17. dchampag

    Health & mana percent

    Did you get this working? if so any help?
  18. dchampag

    Lua Problem with Storage ID and Quest Log

    Yes put something like this in quests.xml
  19. dchampag

    Lua Problem with Storage ID and Quest Log

    Here you go doPlayerSetStorageValue changed to setPlayerStorageValue local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end...
  20. dchampag

    Xampp , cant run apache

    Wel I imagine if he's got Skype it's not vps.
Back
Top