• 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. Codex NG

    Lua How to make something last x seconds

    local ex_storage = 9919 local ex_time = 5 local damage = -10 function onSay(cid, words, param) if exhaustion.get(cid, ex_storage) then local remaining = exhaustion.get(cid, ex_storage) if remaining % 2 == 0 then doCreatureAddHealth(cid, damage) end...
  2. Codex NG

    C++ [TFS 1.3] Bot makes chracter freeze

    Tell him not to use the bot? What are the system specs of your server and what kind of server are you working on, real tibia map, custom? The more information you provide the easier is to find a solution.
  3. Codex NG

    Lua Unused Storages

    If this occurs on your vps or a linux os you type in the terminal grep -rn "storage" * > storages.txt And it will recursively search all the files in the sub directory of where this is executed for anything that is defined within the double quotes and store them in a file called storages.txt...
  4. Codex NG

    Show Gained experience after someone die

    You forgot something
  5. Codex NG

    [USA][Custom] ArchlightOnline - Legacy - Coming May 13th 2022

    Could you explain what a "New Player Catchup Mechanic" is? I don't know if its explained here in this thread already.
  6. Codex NG

    error in console onlogout

    Creature not found We can't do much for you if you don't post the code.
  7. Codex NG

    No in game message when using items.

    You might think everyone is using the same distribution but we aren't some are using 0.3.6, some 0.4 and others are using 1.0, 1.1, 1.2 or 1.3.. some are even using otx and otx has sub versions as well. The moral here is that the more information you can provide with your question such as...
  8. Codex NG

    Znote Shop System with Command

    What is the error? If there is an error or an issue you need include that with your question. A screenshot will do or even copy and pasting the error from the console, make sure to include the error if it is text in code tags.
  9. Codex NG

    Znote Shop System with Command

    Have a look at this thread, maybe the solution is in there? Znote Shop talkaction in tfs 1.0 and donations doubt
  10. Codex NG

    Help me with some spell :)!

    There should be a comma after end on line 49, sometimes I overlook things hehe Line 49 - this end Should be this end, I updated the code so just recopy it.
  11. Codex NG

    My module walk some erros, can help simple?

    Maybe g_mouse.bindAutoPress I don't know I haven't done any work in otclient but the name makes sense :)
  12. Codex NG

    Skill Scroll problem

    Off hand I don't really know what to make of the issue, so lets start with a series of question and possibly find a solution. 1. Are you using tfs 1.2? 2. Did you make any changes to the script or did you just copy and paste it into its appropriate files/directories. 3. Are you using a clean...
  13. Codex NG

    MySQL Setting for Account Creation

    SHA1 online
  14. Codex NG

    Make EQ increase all damage dealt

    onEquip / onDeEquip in movments handles equipment (the slots you equip things to even arrow slot) you can set the storage value there. function onEquip(cid, item, slot) local slots = getPlayerSlotItem(cid, slot) if slots then if slots.itemid ~= item.itemid then...
  15. Codex NG

    Skill Scroll problem

    Show us the table you edited in both scripts skillscroll & scrollwindow This is line 3 of skillscroll function Player:sendSkillVoucherWindow() This is line 5 of scrollwindow local staminaCost = 6 * 60 But above both these lines is this table local skills = {"Magic Level", "Fist Fighting"...
  16. Codex NG

    Solved [HTML] chains broken on the box menu

    You should share the solution and mark the thread as solved.
  17. Codex NG

    [SQL] Assign FOREIGN KEY to an existing column

    Of course there is this as well. How do I create a foreign key in SQL Server?
  18. Codex NG

    [SQL] Assign FOREIGN KEY to an existing column

    It could be your mysql version, I remember sharing code with someone and having to place the column names in ` ` so the query would execute. You might want to compare the mysql/phpmyadmin versions, they might look the same but they could work completely differently.
  19. Codex NG

    [SQL] Assign FOREIGN KEY to an existing column

    Maybe this will help? SQL FOREIGN KEY Constraint
  20. Codex NG

    Collision System

    This gives me a ton of ideas :)
Back
Top