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

    Lua Weapon +Distance Fighting

    Replace spear from items.xml <item id="2389" article="a" name="spear" plural="spears"> <attribute key="weight" value="2000" /> <attribute key="attack" value="25" /> <attribute key="skillDist" value="20" /> <attribute key="weaponType" value="distance" /> <attribute...
  2. Naaano201

    Solved Yalahari mask, vip helmet bug magic lvl acumulates

    Pastebin.com - #1 paste tool since 2002! Copy and paste your movements.xml on New Paste and press Submit, then paste on forum the link generated.
  3. Naaano201

    [Login] Can't Connect to my OT server using Global IP.

    Problem solved?
  4. Naaano201

    Solved Database error

    If you are using UniServer go to: C:\UniServer\usr\local\php Open php.ini and change: ;extension=php_pdo_mysql.dll to extension=php_pdo_mysql.dll Then restart UniServer or your computer.
  5. Naaano201

    [Login] Can't Connect to my OT server using Global IP.

    Go Start - Execute - cmd - ipconfig , check your IP Adress is the same that you used in your router config.
  6. Naaano201

    Solved Chest LEVEL

    function onUse(cid, item) if getPlayerStorageValue(cid,10000) < 1 then if getPlayerLevel(cid) >= 50 then doPlayerSendTextMessage(cid,22,"You have found 10 crystal coins.") doPlayerAddItem(cid,2160,10) setPlayerStorageValue(cid,10000,1) else doPlayerSendTextMessaye(cid,22,"You...
  7. Naaano201

    Question about Elves

    On 9.1 I think
  8. Naaano201

    Solved Chest LEVEL

    chest.lua function onUse(cid, item) if getPlayerStorageValue(cid, 10000) < 1 then if getPlayerLevel(cid) >= 50 then doPlayerSendTextMessage(cid, 22, "You have found 10 crystal coins." doPlayerAddItem(cid, 2160, 10) setPlayerStorageValue(cid, 10000, 1) else...
  9. Naaano201

    Lua Is it possible?

    I thinks i'ts too much hard for me. Maybe can we try to do the script together :p
  10. Naaano201

    Lua Is it possible?

    A player enter on a teleport to go to the X area and that teleport adds an storage 1111 to the player. This storage can be counted with php file? Then when a player enter to the teleport to return, it change storage to 1110 and the stop counting at the web? I'm sorry if u can get it, my...
  11. Naaano201

    Lua Is it possible?

    Is it possible to count the players on X area with lua script and then show in the web page via php script?
  12. Naaano201

    Pvp for my ot does not seem to work.

    worldType = "open"
  13. Naaano201

    Solved Create items and stair problem

    Try that function onSay(cid, words, param, channel) if(param == '') then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.") return true end local t = string.explode(param, ",") local ret = RETURNVALUE_NOERROR local pos = getCreaturePosition(cid)...
  14. Naaano201

    Close door with mwall infront.

    Test this magic wall rune.lua local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY) setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1497) function onCastSpell(cid, var) return doCombat(cid, combat, var) end
  15. Naaano201

    message bless

    local b = 1,5 if not getPlayerBlessing(cid, b) then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are not blessed.") else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are blessed.") end
  16. Naaano201

    Close door with mwall infront.

    It's working for me function onStepOut(cid, item, position, fromPosition) if(getTileInfo(position).creatures > 0) then return true end local newPosition = {x = position.x, y = position.y, z = position.z} if(isInArray(verticalOpenDoors, item.itemid)) then newPosition.x = newPosition.x +...
  17. Naaano201

    Solved [CTF] Can't pick flag

    <?xml version="1.0" encoding="UTF-8"?> <mod name="CTF" version="1.0" author="Doggynub" contact="otland.net" enabled="yes"> <config name="toto"><![CDATA[ --[[ Storage Settings]]-- Owner = 1900 -- put empty storage FLAG2_INn = 4000 -- put empty storage FLAG_IN = 4001 -- put...
  18. Naaano201

    Guild Gesior AAC

    Try the guilds.php that I post. Which server version are you using?
  19. Naaano201

    Guild Gesior AAC

    I didn't check if its the same but try this: http://gesior-aac.googlecode.com/svn/branches/0.6.3/upload/guilds.php
  20. Naaano201

    Compiling Error while compiling in Windows

    boost-1.51
Back
Top