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

    Cual fue tu ot favorito?

    Lol gap, no es un thread para hacerle publicidad a tu ot, es para ver cual fue el mejor que has jugado.. xd
  2. X

    Query help please

    UPDATE `players` SET `experience` = `experience` / 10;
  3. X

    SqlDump in htdocs WTF is that?

    Seems like you got hacked xd.. Try going to localhost/sqldump.php and see what is does.
  4. X

    Potion Problem

    actions/liquids/potions.lua and edit the config part..
  5. X

    [C++] Outfits limit.

    O: i'll try :D
  6. X

    Cual fue tu ot favorito?

    searz-online.com
  7. X

    Player Flags Is it only for premiums?

    go to this line $main_content .= '"><b>'.$player->getName().'</b> <image src="flags/'.$acc['flag'].'.png"></font>'; and remove <image src="flags/'.$acc['flag'].'.png">
  8. X

    Player Flags Is it only for premiums?

    After $main_content .= '"><b>'.$player->getName().'</b> <image src="flags/'.$acc['flag'].'.png"></font>'; Paste: if(is_int($number_of_rows / 2)) {$bgcolor = $config['site']['darkborder'];} else {$bgcolor = $config['site']['lightborder'];} $number_of_rows++; $main_content .= '<TR...
  9. X

    Lua Bugged script

    There: local config = { reward = 9020, --Vampire Token teamStore = 1000, flagStore = 2015, depot = {x=1000, y=1000, z=7} } function onUse(cid, item, fromPosition, itemEx, toPosition) if isPlayer(cid) == TRUE then doSendMagicEffect(fromPosition, CONST_ME_CRAPS) end...
  10. X

    Player Flags Is it only for premiums?

    No.. Like this: $main_content .= ($player->isOnline()) ? 'green' : 'red'; $acc = $SQL->query('SELECT * FROM accounts where id = '.$account->getId().';')->fetch(); $main_content .= '"><b>'.$player->getName().'</b> <image src="flags/'.$acc['flag'].'.png"></font>'; I did not mean to say...
  11. X

    Player Flags Is it only for premiums?

    Try this.. Go to this line: $main_content .= ($player->isOnline()) ? 'green' : 'red'; Aprox line 16. after that line paste this: $acc = $SQL->query('SELECT * FROM accounts where id = '.$account->getId().';')->fetch(); And next to: <b>'.$player->getName().'</b> Paste: <image...
  12. X

    Player Flags Is it only for premiums?

    Look how the flag is added on whoisonline.php and just copy/paste the code next to the player name on characters.php
  13. X

    [C++] Outfits limit.

    I cant add a lot of outfits in-game because there is a limit of 21 outfits I think or less than 21 dont remember exactly, how can I remove that limit? I'm guessing its source editing side.
Back
Top