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

    Lua Npc task with cooldowns

    Help
  2. nefinoo

    RevScripts Exercise Weapons getRateFromTable

    local skills = { [31196] = {id=SKILL_SWORD,voc=4}, -- KNIGHT [31197] = {id=SKILL_AXE,voc=4}, -- KNIGHT [31198] = {id=SKILL_CLUB,voc=4}, -- KNIGHT [31199] = {id=SKILL_DISTANCE,voc=3,range=CONST_ANI_SIMPLEARROW}, -- PALADIN [31200] =...
  3. nefinoo

    Lua Permanent attributes

    So far, this is what I have, only that I have problems with maxhealth and maxmana, since the code is in login, I have a bug that every time I log out and login, my life goes up permanently and increases every time I log out and login. could you help me @Xikini ? local BONUSES =...
  4. nefinoo

    Lua Permanent attributes

    local BONUSES = CreatureEvent("BONUSADDONS") male = {128, 129, 130} female = {136, 137, 138} function BONUSES.onLogin(player) local Outfits = 0 local sex = player:getSex() if sex == 0 then for i, looktype in pairs(female) do if...
  5. nefinoo

    Lua Get amount of addons owned

    I did not understand much your script man, but it gave me a good idea, just putting all the looktypes distributed by gender local BONUSES = CreatureEvent("BONUSADDONS") male = {128, 129, 130} female = {136, 137, 138} function BONUSES.onLogin(player) local Outfits = 0 local sex =...
  6. nefinoo

    Scripter Looking for a C++/LUA programmer for lo addons/mounts bonus

    I need a bonus system for addons and mounts, so far this is what I have to check the amount of addons and mounts you have. local Outfitss = Action() function Outfitss.onUse(player, item, fromPosition, target, toPosition, isHotkey) text = "" outfits = player:getOwnedOutfits() for outfitId...
  7. nefinoo

    Lua Get amount of addons owned

    Bump
  8. nefinoo

    Lua Get amount of addons owned

    I am guiding myself through this thread, and since im not good at lua, im trying to understand it. What I did was add the code in lib to create the function, then create a revscript action local Outfitss = Action() function Outfitss.onUse(player, item, fromPosition, target, toPosition...
  9. nefinoo

    Lua Npc task with cooldowns

    Can anyone help me to make this script have cooldowns for each task? -- Monster Tasks by Limos -- Edited by Zeeb (aka Demnish) local config = { repeatTask = true } local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler)...
  10. nefinoo

    Lua Improve Exercise Weapons

    When "Your training has stopped" or "Your training weapon vanished" the next line player:setStorageValue(Storage.isTraining,0) update some storage, and maybe that storage is already busy by another code, maybe by some quest, you need change your storages of this script or look for the storage on...
  11. nefinoo

    Lua task cooldown

    Can someone help me to add 4 hrs cooldown on every task? -- Monster Tasks by Limos -- Edited by Zeeb (aka Demnish) local config = { repeatTask = true } local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local...
  12. nefinoo

    Revscripts(1.3) Custom Equipment {SYC}

    but I meant to show the item, as if it were a reward from a quest, without the need to put the description of the item on some poster; By the way, when you equip the supreme kai armor, it has an attribute that when equipping it increases your magic level by 25 but when you take it off the magic...
  13. nefinoo

    Revscripts(1.3) Custom Equipment {SYC}

    Is there a way to put the .xml items into the game without the need for god to create them?
  14. nefinoo

    RevScripts Mana potions / Health potions with charges

    No i try your script, with the same ids, and dont work
  15. nefinoo

    RevScripts Mana potions / Health potions with charges

    I'll try it, see if it works with mana potions EDIT: no it didn't work
  16. nefinoo

    RevScripts Mana potions / Health potions with charges

    talkaction or npc sell you charges for yours pots, i am using tfs 1.3
  17. nefinoo

    RevScripts Outfit & Mounts Attributes bonuses

    for every 5 mounts, I give you an attribute as a bonus, the same for the addons, I'm using tfs 1.3
Back
Top