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

    Lua Questio: Is LuaSQL or other Lua-Database way of work added to the OT's?

    Thanks but i'm not looking for one, i just notice than none of the tuts about Lua actualy teach guys than they can connect and interact directly through lua with a DB. And that's a powerfull stuff if you are making scripts
  2. Obsdark

    Lua Questio: Is LuaSQL or other Lua-Database way of work added to the OT's?

    for practical purpose you already answer my thing ¡Thanks a lot! I was wondering why not a single tut about Lua in Otland or similar touch this topic at all, i believe than LuaSQL wasn't part of the OT compilation, well Thanks a lot about this correction, you don't know how much you help...
  3. Obsdark

    Lua Questio: Is LuaSQL or other Lua-Database way of work added to the OT's?

    Is LuaSQL or other Lua-Database way of work it added to the OT's? Of course i'm asking because i'll never seen in a tutorial nobody teaching how to use it, and i think it would be a good way to avoid working with C++ to work with the databases Also it increase significantly the possible uses...
  4. Obsdark

    Compact Script?

    what it supose to do?
  5. Obsdark

    Programmer Searching a nice mate to work with. (a new AAC)

    aaaah, well, the templates look really nice!
  6. Obsdark

    Programmer Searching a nice mate to work with. (a new AAC)

    i add you, i'll send you a PM with my username
  7. Obsdark

    {Unsolved} Summon 60 seconds after room is clear of monsters.

    i don't know about the execute thing, but maybie if you ask the code of the function and install it you can solve your problem. I mean, in other post, of course. ;)
  8. Obsdark

    Food/Item difference creator spell

    local FOODS = {XXXX, YYYY} -- Here put the ID of the food item/s-- local Total_Max = 100 -- Here adjust the total -- local Barrier_Level = 20 -- Here adjust the level -- local text = "You've reached your limit of "..Total_Max.." "..getItemNameById(fot).."." -- Here adjust the message -- local...
  9. Obsdark

    Programmer Searching a nice mate to work with. (a new AAC)

    I know, i wanna be part of this, i know a little about PHP/HTML/CSS and Javascript, and i think this is kinda perfect to learning about. ¡Count on me! (if you want, of course)
  10. Obsdark

    Gamemaster Reference (Leaked)

    Just must not encourage any action against the rules? Wasn't bannalot expelled for santion the son of the owner of tibia? who was actualy selling one account ingame? That was sayd back then i guess? aren't it?
  11. Obsdark

    [Request] Special Food Spell

    Yes indeed ;) Thanks a lot, now i check the code, i guess this would do every single thing you want. local FOODS = {XXXX, YYYY} -- Here put the ID of the food item/s-- local Total_Max = 100 -- Here adjust the total -- local text = "You've reached your limit of "..max_item.."...
  12. Obsdark

    Suggestion Job Page

    Is it clearer now?
  13. Obsdark

    Suggestion Job Page

    I see a threat than inspire me to make a suggestion, i believe we must rethink the Job section, i think it would be cool if instead the forum place there was some kind of "Postulant Web Page" with some questionary than ask things related to it, for example experience, or what programing...
  14. Obsdark

    [Request] Special Food Spell

    For be honest with you, that was the next step, but first i wanna see it functioning without vars ;) After all, if i sum vars, then the thing is easier to install but can't be so much for debug.. Besides that one doesn't cast you another type of food in the same code, you'll need to make two...
  15. Obsdark

    [Request] SearchPlayer.lua (Exiva spell)

    Thanks a lot
  16. Obsdark

    [Request] Special Food Spell

    u know what we need? to make a little debuggin i need you to write this one like a new spell, and tell me what's print, just like it is. local function fot(cid) if getPlayerLevel(cid) <= 20 then fot = FOODS[1] elseif getPlayerLevel(cid) > 20 then fot = FOODS[2] end...
  17. Obsdark

    [Request] Special Food Spell

    local FOODS = {XXXX, YYYY} -- Here put the ID of the food item/s-- local get = getPlayerPosition(cid) local function fot(cid) if getPlayerLevel(cid) <= 20 then fot = FOODS[1] elseif getPlayerLevel(cid) > 20 then fot = FOODS[2] end return fot end function...
  18. Obsdark

    [Request] Special Food Spell

    i suspected, local function fot(cid) if getPlayerLevel(cid) <= 20 then fot = FOODS[1] elseif getPlayerLevel(cid) > 20 then fot = FOODS[2] end end Good one there, i think this should work
  19. Obsdark

    [Request] Special Food Spell

    fot = if getPlayerLevel(cid) <= 20 then fot = FOODS[1] elseif getPlayerLevel(cid) > 20 then fot = FOODS[2] end How about this. ? So basicly the one than is a little smaller have the same problem than the other than is a little bigger? Good to know, if that's the...
  20. Obsdark

    [Request] Special Food Spell

    local fot = {if getPlayerLevel(cid) <= 20 then fot = FOODS[1] elseif getPlayerLevel(cid) > 20 then fot = FOODS[2] end} Change that part to this Tell me what apparead
Back
Top