• 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!

Recent content by dchampag

  1. 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.
  2. 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.
  3. 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.
  4. 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.
  5. 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 =)
  6. dchampag

    Solved Please have problen for vocation

    Hmm that is all correct, post your modules.lua
  7. 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")...
  8. dchampag

    Solved Please have problen for vocation

    We need Damian's promotion script and we need vocations.xml
  9. dchampag

    Compiling Unlimited HP/MP

    It saves in the database, you can't help it. So in order to do it you have to do that too.
  10. dchampag

    Compiling Unlimited HP/MP

    This is true, but the server application requirements are actually very small, so these changes would only slow you down if your system itself is slow. Other than that I've succeeded in this process and It is a very long process, requiring changes for items and stats and such. Because any item...
  11. dchampag

    Compiling Unlimited HP/MP

    No int32 has that limit int64 does not.
  12. dchampag

    Couldn't establish connection to SQL Database!

    Make sure the SQL server is started, it's not detecting one.
  13. dchampag

    How can I run a script once per "server cycle" ?

    Ha alright, well when I'm home and get some free time I'll show ya my script.
  14. dchampag

    How can I run a script once per "server cycle" ?

    Unfortunately as you said there is many limitations, your best net is to let it check interval, for a status such as storage, then execute based on that storage value, or if you want to get crazy just make c++ additions =d What script my interv script?
  15. dchampag

    How can I run a script once per "server cycle" ?

    I don't really understand the first question and as for the second I'm not really positive, I would just go based on CPU usage, if your CPU usage seems to spike a lot when having the script then the time should be reduced. If you can figure out how to compile in 64 bit that will allow for...
Back
Top