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

    TalkAction Bomberman

    Pretty sure that LUA tags f*cks up the tabbing.
  2. Ancores

    Doors with key

    Set an action id on a door in the mapeditor and then set the same action id on the key.
  3. Ancores

    Script errors

    local mobx = { mob1 = {x=1122, y=958, z=7}, mob2 = {x=1130, y=958, z=7}, mob3 = {x=1126, y=956, z=7}, mob4 = {x=1126, y=963, z=7}, mob5 = {x=1126, y=959, z=7}, mob6 = {x=1126, y=960, z=7}, mob7 = {x=1126, y=962, z=7}, mob8 = {x=1126, y=955, z=7} } local room = { -- room with monsters...
  4. Ancores

    [Creature Event Support] When Monster Attack Player

    Ahh, thanks. That's what I needed to know
  5. Ancores

    [Creature Event Support] When Monster Attack Player

    I don't think it works with cid on monsters, I think it has to be a player with Target/Follow/Kill/Combat etc.
  6. Ancores

    [Creature Event Support] When Monster Attack Player

    Thanks, I'll try it later.
  7. Ancores

    [Creature Event Support] When Monster Attack Player

    Is it possible to use for example: function onCombat(cid, target) if isMonster(cid) and isPlayer(target) then return false end return true end To make it impossible for a monster to attack a player? I know you can add a line in the monster's .xml files which...
  8. Ancores

    More items attributes in lua scripting

    doItemEraseAttribute(uid, key) doItemRaidUnref(uid) doItemSetAttribute(uid, key, value) getItemAttribute(uid, key) ------------------------------------------------------------ -attribute key "aid" = return the action id -attribute key "armor" = return the item armor -attribute key "article" =...
  9. Ancores

    Problem with gesior acc,help me!

    Maybe you could search for the link you get redirected to in layout.php and change that link to: ?subtopic=latestnews Something like that
  10. Ancores

    [REQUEST] Help Ot 8.52 Into 8.54

    In resources.h change: #define CLIENT_VERSION_MIN 852 #define CLIENT_VERSION_MAX 852 to: #define CLIENT_VERSION_MIN 854 #define CLIENT_VERSION_MAX 854
  11. Ancores

    Gambling Script

    Try this local wins = {3515, 2897, 2893, 4018, 2371} -- Change to item ids of items you can win local chance = 5 -- 20% chance to win local cost = 10000 function onUse(cid, item, fromPosition, itemEx, toPosition) local i = wins[math.random(1, #wins)] if doPlayerRemoveMoney(cid, cost) then if...
  12. Ancores

    Walk through player

    Something like this I guess bool Player::canWalkthrough(const Creature* creature) const { if(!creature) return true; if(creature == this) return false; const Player* player = creature->getPlayer(); if(!player) return false; if(g_game.getWorldType() == WORLD_TYPE_NO_PVP &&...
  13. Ancores

    self look

    function onLook(cid, thing, position, lookDistance) if not isPlayer(thing.uid) then return true end return doPlayerSendTextMessage(cid, 25, "You see " .. getCreatureName(thing.uid) .. ", " .. ((getPlayerSex(thing.uid) == 1) and "he" or "she") .. " is a " ...
  14. Ancores

    Lua How to make a forever aol with rs protect help?

    upded. Last edited by Wibben; Today at 18:55. He updated the script ^^
  15. Ancores

    [Help] Script Posting 8 messages!!

    function onDeath(cid) setPlayerStorageValue(cid, 9999, 0) return true end ?
  16. Ancores

    Healing temple

    function onThink(interval) if getThingFromPos({x=160, y=51, z=7, stackpos=253}).itemid > 0 then doCreatureAddHealth(getThingFromPos({x=160, y=51, z=7, stackpos=253}).uid, 10) end return true end
  17. Ancores

    APB All Points Bulletin

    Yeah, I pre-purchased a week ago and playing now, name in-game?
Back
Top