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

  1. kkk111

    [MySQL] Help with query

    Use SQL -> INNER JOIN SELECT `p`.`name` AS "Player Name", `h`.`id` AS "House ID", `ha`.`id` AS "Winner ID" from `house_auctions` AS `ha` INNER JOIN `players` AS `p` ON `p`.`id` = `ha`.`winner_id` INNER JOIN `houses` AS `h` ON `h`.`owner_id` = `ha`.`house_id` WHERE `ha`.`winner_id` = 2
  2. kkk111

    Struggle with c++

    "client debugs after 2,147,483,647 exp"
  3. kkk111

    Solved A talkaction that would cause a magic effect near player, not on player.

    pos = getCreaturePosition(cid) doSendMagicEffect({x=pos.x, y=pos.y, z=pos.z}, CONST_ME_TELEPORT)
  4. kkk111

    Lua Help with this Website Script!

    Test........ <?PHP $order = 0; $number_of_rows = 0; $Sql_Query = $SQL->query('SELECT level,name,online FROM players WHERE `group_id` < 3 AND players.deleted = 0 AND name != "Account Manager" ORDER BY level DESC, experience DESC LIMIT 10;')...
  5. kkk111

    Solved OTX, invalid password

    use sql to update; change on red; UPDATE accounts SET name='myaccount', password = SHA1('mypassword');
  6. kkk111

    Lua error script

    post your script isPremium(cid)
  7. kkk111

    Solved Php problem

    I made a simple adjustment that should work, if you want something better inform all fields of guildwinner table, and the way the system works (it updates the existing record?, it inserts new records?, it deletes the old records?) ** This mode will show all records from the table guildwinner...
  8. kkk111

    New Layout - HELP!

    You do not know to resize a table?
  9. kkk111

    Windows Donation Items Question

    Use rare items...... Warlord Sword Amazon Shield Blessed Shield Solar Axe Amazon Armor Dragon Scale Legs
  10. kkk111

    setup website error

    root/home/otsmanager/otserver/config.lua
  11. kkk111

    Xampp-Gesior-Problem

    are using router? check if your port is open -- port 80 http://www.checkmyports.net/ http://www.yougetsignal.com/tools/open-ports/
  12. kkk111

    Lua Skull System Not Working!

    because function onLogin(cid), and not function onKill(cid, target)?
  13. kkk111

    Solved IPChanger and addMonster Problem

    check version src/definitions.h and re-compile #define CLIENT_VERSION_MIN 1021 #define CLIENT_VERSION_MAX 1022 #define CLIENT_VERSION_STR "10.22" and addMonster problem open map-spawn.xml with notepad++ find all line <monster name="" and remove full line
  14. kkk111

    Xampp-Gesior-Problem

    localhost work? set firewall off
  15. kkk111

    Compiling ubuntu compile error

    you not compiled with -D__WAR_SYSTEM__
Back
Top