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

    [USA][8.6/Custom] Infernal OT - OTClient

    I'm sorry for your inconvenience with prior experiences, All passwords in our database are encrypted, that means this is not possible. If you choose to share your username and password with other players, that is not on us, please do not blame our community or staff members for issues you were...
  2. dchampag

    [USA][8.6/Custom] Infernal OT - OTClient

    Hi everyone, This is Infernal OT, we are proud to be back with a new server balance and updates. Full custom map, spells, and events. Infernal OT exp rate is custom staged, high exp, high level with rebirth. HP and Mana are shown as a percentage, this is great for the high numbers being...
  3. dchampag

    Shop system Znote AAC

    UPDATE, I was able to dump the variables from the array and see that the array key was initiating with 0 instead of 1 and that was the only difference. the solution for this is as follows if anyone has this issue. if ($shop['useDB'] === true) { $shop_list = get_shop_offers()...
  4. dchampag

    Shop system Znote AAC

    Bump. Can anyone explain to me why the table generated from this MySQL script is causing issues for the first item, but not when using the manual table in config?
  5. dchampag

    Shop system Znote AAC

    Hey there otland, I am using the latest Znote AAC, I added this function for the shop system so that I can add items to shop through database. function get_shop_offers() { return mysql_select_multi("SELECT `type`, `itemid`, `count`, `description`, `points` FROM `znote_shop`;"); } This is...
  6. dchampag

    Lua What makes a spell appear in the spellbook?

    level="1" should be lvl="1" this would solve the issue. I know this is old, but for anyone looking for a solution to this.
  7. dchampag

    Issues with Znote shop useDB

    bump Anyone have any ideas before I start reprograming this? My fear is mostly with security, I'm aware znote is extremely secure and this is why I'm using it, it also does not present any issues with my php, apache and webserver upgrades. I have migrated from IIS to increase security, I am not...
  8. dchampag

    RME 7.6 Server not starting after map save

    Seems so, you will likely have to change some information in the sources and recompile in order to use RME, or find a new distro compatible with your datapack
  9. dchampag

    RME 7.6 Server not starting after map save

    Hmm, I'm sorry, seems strange, something is certainly missing. Are you compiling the server yourself? Maybe check out this thread https://otland.net/threads/forgottenserver-map-cannot-be-found.6089/ This could guide you in the right direction. so originally your map file is .map and your new...
  10. dchampag

    RME 7.6 Server not starting after map save

    Sounds like potentially a file extension issue? is the new file extension on save being changed to otbm?
  11. dchampag

    RME 7.6 Server not starting after map save

    If you're using windows you can do this create a batch file using @Echo ON :a "SERVERFILE.exe" /high goto a REPLACE SERVERFILE WITH THE NAME OF THE EXECUTABLE then double click the window even if error repeats and it will pause and then we can see the error.
  12. dchampag

    RME 7.6 Server not starting after map save

    What map editor does the server say the initial map was mapped with when you load the server? Also are there any errors showing in the server console?
  13. dchampag

    Issues with Znote shop useDB

    I am currently trying to configure my website to use the database for shop items, when I edit config.php it does not read from znote_shop table I am not sure where the code is for these items and I thought I would just ask rather than reading through several files trying to find out why or...
  14. dchampag

    Players can still access vip area after days end

    In your data>lib folder you probably have some more code for your vip system in there. there is definitely more code because isVIP is not a default function, so it's a function added. from the code you posted, looks like isVIP check is not working correctly.
  15. dchampag

    Createaccount GESIOR

    What do you mean your page to create account is taking too long to load? you mean that when you select submit it says that it's loading and does not do anything? if this is the case then you are having a database issue in which the website is not able to submit the information.
  16. dchampag

    [SQL] Import database - Error

    If you have temaviewer, you can Private Message me the information. I will show you MySQL Workbench, it's a great program.
  17. dchampag

    [SQL] Import database - Error

    What are you using to import your database? I recommend MySQL workbench as the best free software. If you want to pay Navicat is very very convenient and easy to use.
  18. dchampag

    Solved Please have problen for vocation

    well, then your modules.lua must be incorrect, because if you are not premium it should say that you are not premium, not tell you that you've been promoted =)
  19. dchampag

    Solved Please have problen for vocation

    Hmm that is all correct, post your modules.lua
  20. dchampag

    Solved getCreatureMaxHealth.. only get base, not current?

    If that doesn't work. Create the function function getCreatureActualMaxHealth(cid) local Info = db.getResult('SELECT `healthmax` FROM `players` WHERE `id` = "' .. getPlayerGUID(cid) .. '" LIMIT 1') if Info:getID() ~= LUA_ERROR then local maxhealth = Info:getDataInt("healthmax")...
Back
Top