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

Search results

  1. eyez

    TFS 0.X Limit 3 players for IP on Training Monks?

    How can i do to each player can have only 3 characters in training monk per IP? entering_monks_script.lua function onStepIn(cid, item, position, fromPosition) for i = 17001, 17100 do local pos = getThingPos(i) if not isPlayer(getTopCreature(pos).uid) then doTeleportThing(cid, pos)...
  2. eyez

    How to deal with items clone

    I don't have crashes bugs (as far i know) but clone items could be a BIG problem for me and for every other server owner. So i wanna hear from more experienced people here, what should i do about this? There is a good way to fix or get around of this? Option 1...
  3. eyez

    TFS 0.X Player INV as Warlock,Stalker...

    I search and test everything about this in this forum, there are a lot of topics for requests, helps but no one works well as should be monsters who can see inv stops the inv by atking atk in area stops the inv (players/monsters) players inv could be pushed when you are inv and atk, it stops...
  4. eyez

    How this works?

    https://otland.net/threads/antirollback.271258/ /\ How this works? Is it avoid players to clone items when server crashes?
  5. eyez

    TFS 0.X Invisible utana vid

    I would like to make utana vid more RPG, like others games, let player actually invisible The best solution to this for now is the heba's script (a lot of people ask for it): local condition = createConditionObject(CONDITION_INVISIBLE) setConditionParam(condition, CONDITION_PARAM_TICKS, -1)...
  6. eyez

    TFS 0.X Loot message to grey

    this is how loot msgs are show: all green i want to change to something like this grey: but with some items from a list blue,green,red how to change it? to grey is something here? https://github.com/Fir3element/3777/blob/master/config.lua#L229 and about loot rares colors? is it something...
  7. eyez

    TFS 0.X Efect on monster corpse when monster drops rare

    How to create this effect on monster corpse when drop some rare loots? if(chance <= 100) 'Legendary' else if(chance <= 500 && chance > 100) 'Epic' else if(chance <= 2500 && chance > 500) 'Rare'
  8. eyez

    TFS 0.X player invisible as warlock

    I played a server who some vocations could be invisible as warlock monster is... It was so fun, but server closed and i want to make like that... Players was invisible to others monsters (who could se invisible, demons for example attacks and remove the inv), players And the invisible removes...
  9. eyez

    TFS 0.X total player invisible

    A spell to players be invisible to others players is so fun... I tried to make it for a custom project, there are a lot of requests about it here on forum so i put some scripts together i make it to work: <instant name="Shadow Walker" words="utana vis" lvl="8" manapercent="70"...
  10. eyez

    Absolute anti clon system

    I suffer so much with cloners, with a low loot OT, low exp, ppl clone everything... i found this on forum: https://otland.net/threads/lua-c-absolute-anti-clon-system.137287/ would it solve my problem? is it too heavy for the server? there is a way to optimize the onmove script? what the house...
  11. eyez

    [MAP] What is this 2 items ID?

  12. eyez

    TFS 0.X Exausted SSA/Might Ring

    I did found this script to add a exausted on SSA and Might Ring (to prevent bots rulles) It's working, you cant equip the item before exausted finish But SSA and Might Ring are not losing charges after u recive damage (after i added this script) <!-- onequip_exausted_pvp --> <movevent...
  13. eyez

    Lua EXP potion should effect 2 hours, but its over so fast

    I have this action function ExpBackNormal_EndVoucher(cid, bonus) local rates = getPlayerRates(cid)[8] - bonus doPlayerSetExperienceRate(cid, rates) return true end function onUse(cid, item, fromPosition, itemEx, toPosition) if getCreatureCondition(cid, CONDITION_INFIGHT) then...
  14. eyez

    TFS 0.X EXP boost temporally

    Anybody could help me to finish my action item to add exp bonus temporally? Add 50% exp bonus for 1 hour. function onUse(cid, item, fromPosition, itemEx, toPosition) if getCreatureCondition(cid, CONDITION_INFIGHT) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE...
  15. eyez

    Magic Wall timers

    Is totally unfair play against players using elfbot and things like that... There is a way to show magic wall / wild timers in otclient?
  16. eyez

    OTclient spyup spydown

    There is a way to create on OTClient a way to when press "+" use spyup (like that hotkey on elfbot that you can see nexts floors up) and "-" to use spydown (down floor) For example i'm on Z == 7 I press "+" 2 times and i can see Z 5
  17. eyez

    Loot gold coin CandyBot

    I was looking around candybot and found this: /mods/otclient-candybot-master/modules/04-targets/events/autoloot.lua otclient-candybot/autoloot.lua at master · BenDol/otclient-candybot · GitHub Anybody can help me with a base: How to set to bot only loot items: Gold Coin It's should be a...
  18. eyez

    Remove small laterals otclient

    How to remove only this smalls laterals To make my game screen more higher, like on medivia is: (i'm don't want to remove all laterals, and make everything transparent like have a lot tutorials here on forum, i just want to remove smalls ones)
  19. eyez

    Arrow slot OTClient

    On OTclient you can replace your weapons on hands... Right/Left But i play paladin with BOW/CROSSBOW So i create a new condition to arrow slot... But how to get arrow slot to complete my code? elseif AfkModule.getPanel():getChildById('AutoReplaceWeaponSelect'):getText() == "Arrow Slot" then...
  20. eyez

    OTClient msgs don't show up

    Why this 2 types of msg never show up in my OTClient? What i need to do to fix it? Msgs who never show up: doCreatureSay(cid, 'Never Show Up 1', TALKTYPE_ORANGE_1) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Never Show Up 2") I think this second the problem is in...
Back
Top