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

    pandaac: The Resurrection

    Great project and framework <3
  2. pepe

    Introduction to OTClient.

    It is. Playing an 8.60 server right now. :p
  3. pepe

    if player isOnline

    You're welcome. :)
  4. pepe

    if player isOnline

    echo '<font color="', ($player->isOnline() ? 'green' : 'red'), '">', $player->name, '</font>'; ;)
  5. pepe

    [MONSTER] Annoying Problem

    ;) short
  6. pepe

    Elves VS. Orcs

    that skin looks sooo familiar XDD So that's why u pm'ed me at otfans~ XDDD
  7. pepe

    Elves VS. Orcs

    I could help you with scripts but finals are near so i don't have time. GL, looking forward to it.
  8. pepe

    CreatureEvent Anti-Push

    If i'm not wrong, OTServ dosn't have onPush events.
  9. pepe

    Coordinates!

    I did one MOD like this... <?xml version="1.0" encoding="UTF-8"?> <mod name="Coordinates Look" enabled="yes"> <config name="coordinates-config"><![CDATA[ cfg = { access = 5, msg = "local position = { x = |x|, y = |x|, z = |z|, stackpos = |stackpos| }", msgType =...
  10. pepe

    CreatureEvent Anti-Push

    Look, i modified your script so i don't have that error while trying to push somebody with no target. if(isPlayer(target) and (getCreatureTarget(target) > 0 and isInArray(targetList, getCreatureName(getCreatureTarget(target)):lower()))) then If you want players to be able to push...
  11. pepe

    ~~~

    Yes, it sure does. BUT... You only added 8.60 lookTypes and changed some lines... Everything else isn't yours. Bye.
  12. pepe

    ~~~

    Noob. setPlayerStorageValue(cid, 1921, i+1) setPlayerStorageValue(cid, 1921, i+1) Even the same storage... And it's yours 100%. KKKKKKKK
  13. pepe

    [8.54] helmet changing voc and looktype on equip and turn it off of dequip

    local cfg = { male = {lookType = 144, lookHead = 19, lookBody = 53, lookLegs = 92, lookFeet = 79, lookAddons = 0}, female = {lookType = 148, lookHead = 19, lookBody = 53, lookLegs = 92, lookFeet = 79, lookAddons = 0}, vocation = 5, storage = 9999 } local male =...
  14. pepe

    Elves VS Orcs Client

    Custom client. No botters.
  15. pepe

    I need POPUP in this script

    local config = { message = "ahhh cigüeñaaa barajim bada usa la la... hachis! fin", effect = CONST_ME_TELEPORT, newPos = { x = 271, y = 680, z = 7 } } function onStepIn(cid, item, position, fromPosition) if not isPremium(cid) then doPlayerSendCancel(cid, "Only premmium players can...
  16. pepe

    puedo spammear?

    Y bueno, cómo vieron el debate? XD!!!
  17. pepe

    Lua i found a mount bug

    Another way is dismount onLogout o.o Create: data\creaturescripts\scripts\dismount.lua function onLogout(cid) if(getCreatureName(cid):lower() ~= "account manager")then doPlayerSetMounted(cid, false) end return TRUE end Now on data\creaturescripts\creaturescripts.xml add this...
  18. pepe

    I need POPUP in this script

    Could you explain it a bit more? ¿Qué quieres? xD
  19. pepe

    Lua hasItemProperty

    If certain item has certain property... CONST_PROP_BLOCKSOLID = 0 CONST_PROP_HASHEIGHT = 1 CONST_PROP_BLOCKPROJECTILE = 2 CONST_PROP_BLOCKPATHFIND = 3 CONST_PROP_ISVERTICAL = 4 CONST_PROP_ISHORIZONTAL = 5 CONST_PROP_MOVEABLE = 6 CONST_PROP_BLOCKINGANDNOTMOVEABLE = 7...
  20. pepe

    Change % for 1 point

    After: doPlayerSendTextMessage(cid, 22, "Congratz! Upgraded was successful, your item has become stronger!") Add: doBroadcastMessage("Combination with success: " .. getCreatureName(cid) .. " combined " .. getItem.name .. " +" .. nLevel .. "!", MESSAGE_STATUS_WARNING) Bye.
Back
Top