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

    [Modern AAC][Using the MVC] Support list

    Hello, I've seen alot of people not properly using the MVC modell, it's there why not use it? Here is my support list, you will have to style it yourself. supports_model.php (Model) <?php /* Copyright Johan Hultin Please don't remove this copyright information You are free to edit...
  2. Hultin

    [Modern AAC] Automatic DaoPay script

    If you've got a controller for it why not use it and a model instead of dumping all the code into the view? kind of defeat the purpose of ModernAAC using the MVC model
  3. Hultin

    [Modern AAC] spells list (sorting by vocation)

    How is it >HARD< to work with XML, making a cronjob that runs through the xml files every x-days (to update it) and insert the values into the database instead of using this "hardcoded" list of spells?
  4. Hultin

    [WebSite] Fatal error: Uncaught exception 'PDOException'

    It tries to insert a id in the mysql database table that already exists, which isn't allowed because it's a unique field (as in there can only be one of each value) or, waht seems to be your case, there's already a field called ID
  5. Hultin

    Lua OnKill Level Up Frag

    Checking that the target is a player might be a bad idea, I mean, you could have no target and hit a ue and killing somebody and because of that not get a reward.
  6. Hultin

    [MySQL] i cant describe.(screenies included)

    What he means is, you need to restore your password. What I wonder is, does that screen come up after or before you've tried loging in? Because that's got nothing to do with a incorrect password. And it seems that you aren't using correct settings in your lua file (says there's no password input?)
  7. Hultin

    Cant login on server with sha1

    Also, it may take a restart or even >two< for the server to recognize the change in the config file, atleast from my experience.
  8. Hultin

    Lua Azerus, movement error!

    doTeleportThing(cid, player_pos_entrada) doSendMagicEffect(player_pos_entrada, 10) player_pos_entrada isn't set to anything, next time you translate somebody elses script make sure to go through it completly ;)
  9. Hultin

    Lua Issues with lever / action

    Exactly, you will have to stand on a specific tile for it to work. It's a elevator, after all ;) I've discovered that it has something to do with doTeleportThing() not wanting to send me to far down (if I set to floor 8 it works fine, and stops at 9) but I cannot find doTeleportThing() in any...
  10. Hultin

    poi blood

    Then try to learn to make it, not getting help in requests is no excuse to post in the wrong forums
  11. Hultin

    How to watch a 8.6 movie?

    You could download a older verison of Bynacam. However, there has been reports of it being infected (as in Virus) so use with causion
  12. Hultin

    Make all player offline?

    UPDATE players SET online = 0 should do it
  13. Hultin

    poi blood

    This isn't the request section, this is the SUPPORT section.
  14. Hultin

    Lua Issues with lever / action

    I've doublechecked all positions over and over and all the positions are correct so it's not that.
  15. Hultin

    RME + Crying Damson 8.54 = Items Fail

    Tried switching otb file?
  16. Hultin

    Lua Issues with lever / action

    I've created a lever I want players to use to get teleported to another location, it looks like this Actions.xml <action actionid="55001" event="script" value="custom/trainingelev.lua"/> and trainingelev.luafunction onUse(cid) local curpos = getCreaturePosition(cid) if(curpos.x == 1075 and...
  17. Hultin

    [8.7] The Forgotten Server v0.2.9 (Mystic Spirit)

    Anyone got some nice talkactions for this release? all my old one (made on 8.6 v0.4 wont work)
  18. Hultin

    [NON OT] Scraping data from Tibia.com

    Great suggestion, how could I not have thought of that myself! :P Thanks man :D
  19. Hultin

    [NON OT] Scraping data from Tibia.com

    Hi I'm wondering if anyone's got any experience in scraping data, or rather, parsing the scraped data to find character names. Because the tibia.com website is.. a bombsite really, I can't find any logic to follow while parsing through it. Any and all help would be appreciated!
  20. Hultin

    achivments

    Well, I myself think it's fun to find some of the achivments by accident, for instance completing a quest or a outfit. Hehe, I will share all achivments and scripts once I've scripted them and I will try to make it as object oriented as I can within Lua (not my regular language)
Back
Top