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

  1. Naaano201

    Lua Hey problem with rune but not lever <

    Problem with viper star: Go to items.xml find viper star and change <attribute key="breakChance" value="9"/> to <attribute key="breakChance" value="0"/>
  2. Naaano201

    [Gesior] X-logged Players

    @up whoisonline doesn't work. don't worry, thanks you anyway.
  3. Naaano201

    Lua Red Skull No Loss Items without edit sources?

    function onDeath(cid, corpse, deathList) if getPlayerBlessing(cid,5) then if (getCreatureSkullType(cid) == SKULL_RED) then doCreatureSetDropLoot(cid, false) end end return true end Not tested.
  4. Naaano201

    Beta testers!

    @Bassam421 Are you using: http://otland.net/f451/how-not-count-x-logged-players-81370/ ?
  5. Naaano201

    [Gesior] X-logged Players

    @UP Not working... 2Players palying and 1Player exit on trainers. Currently 3 players are online on XXX.
  6. Naaano201

    [Gesior] X-logged Players

    <?php if(!defined('INITIALIZED')) exit; if(count($config['site']['worlds']) > 1) { foreach($config['site']['worlds'] as $idd => $world_n) { if($idd == (int) $_REQUEST['world']) { $world_id = $idd; $world_name = $world_n; } } } if(!isset($world_id)) { $world_id = 0; $world_name...
  7. Naaano201

    when use right click on item it doesn't dissapear

    local skulls,s = {SKULL_YELLOW = "yellow", SKULL_GREEN = "green", SKULL_WHITE = "white"},50000 function onUse(cid, item, fromPosition, itemEx, toPosition) local txt = "Your " .. (getCreatureSkullType(cid) == SKULL_NONE and "don't have any" or "can't") .. " " .. (getCreatureSkullType(cid) ==...
  8. Naaano201

    Lua frag remover

    It's working for me, which server version are you using?
  9. Naaano201

    Free 2kk Lottery!

    Number 20.
  10. Naaano201

    Lua Script error

    function onLook(cid, thing, position, lookDistance) function getHonorPoints(cid, type) local query,d = db.getResult("SELECT `player_id` FROM "..(tostring(type) == "kill" and "`honor_points`").." WHERE `player_id` = "..getPlayerGUID(cid)),0 if (query:getID() ~= -1) then repeat d = d+1...
  11. Naaano201

    Solved about uni server. Rep++ for answer

    In config.lua change localhost to 127.0.0.1
  12. Naaano201

    Lua frag remover

    local config = { item = 9969, -- WPISZ ID ITEMA KTÓRY MA USUWAC FRAGI PRAWYM KLIKNIECIEM level = 1, count = 0 } function onUse(cid, item, frompos, item2, topos) if getTilePzInfo(getCreaturePosition(cid)) == TRUE then doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF)...
  13. Naaano201

    Solved about uni server. Rep++ for answer

    Go to: C:\UniServer\usr\local\php Open php.ini and find ;extension=php_pdo_mysql.dll and change to extension=php_pdo_mysql.dll
  14. Naaano201

    Solved about uni server. Rep++ for answer

    It's for 32 bits. Maybe you have got pdo_mysql extension disabled.
  15. Naaano201

    [Gesior] X-logged Players

    @ Cronox It is not working: Currently there are 3. Somebody can help me with that php code?
Back
Top