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

    TFS 1.X+ funcion add outfit and addon in shop.lua otclient

    Did you guys find solution for this?
  2. dewral

    TFS 1.X+ how to remove effect tfs 1.5 7.72

    data/actions/scripts/other/fluids.lua sentences : local fluidMessage = { [FLUID_BEER] = "Aah...", [FLUID_SLIME] = "Urgh!", [FLUID_LEMONADE] = "Mmmh.", [FLUID_MANA] = "Aaaah...", [FLUID_LIFE] = "Aaaah...", [FLUID_OIL] = "Urgh!", [FLUID_URINE] = "Urgh!"...
  3. dewral

    TFS 1.X+ admin giving a gift to all the active players by Command

    data/talkactions/scripts create file gift.lua and paste the script open talkactions.xml and put something like this on admin commands <talkaction words="/gift" script="gift.lua" />
  4. dewral

    TFS 1.X+ admin giving a gift to all the active players by Command

    What engine you're using? Because i have no problems with this on tfs 1.5 function onSay(player, words, param) if not player:getGroup():getAccess() then return true end if player:getAccountType() < ACCOUNT_TYPE_GOD then return false end local giftId = 5092...
  5. dewral

    TFS 1.X+ tfs 1.4 attackspeed on item

    Could you show exactly how did you put this?
  6. dewral

    Custom Attributes

    It's cool maybe i figure it out someday :D Anyway im highly interested also how to make that custom attributes :P
  7. dewral

    Custom Attributes

    With using source files it does update the attribute and changing the value in description like this But with using luaitemdescription it goes like this xD don't changing anything at all
  8. dewral

    Custom Attributes

    Now i checked when i have luaItemDesc = false it does work and update it normally so the problem is in lib/core/item.lua then. But what is wrong here xD if it:getAttackSpeed() ~= 0 then begin = addSeparator(ss, begin) ss:append('Attack speed %s%d'...
  9. dewral

    Custom Attributes

    Well the problem is that it's not displaying, but when i put it in items.xml it's displaying xD But after i use the script it does change the value but not the display i don't know why :p I'm using luaitemdesc so i put it like this in item.lua if it:getAttackSpeed() ~= 0 then...
  10. dewral

    Custom Attributes

    So if i want make something like stone attack speed upgrade something like this function onUse(player, item, fromPosition, target, toPosition, isHotkey) if not target:isItem() then return false end local position = (toPosition.x ~= 65535 and toPosition or...
  11. dewral

    Fire field blocking doors

    Good to know then, i thought it was some kind of bug. Thanks for clearing that out :D
  12. dewral

    Fire field blocking doors

    Yes you have to wait to close it. I honestly don't know how this should work that's why im asking :D The main problem was that fire field was staying on gate of expertise before but i repaired it like this on closingdoors.lua local field = tile and tile:getItemByType(ITEM_TYPE_MAGICFIELD)...
  13. dewral

    Fire field blocking doors

    Hello guys i'm having a little problem with fire fields, when monster put fire fire field somewhere under doors it blocks them and they cannot be closed/opened. Like client draws first fire fields. Is this supposed to be like that? Tfs 1.5 772 nekiro downgrade Otcv8
  14. dewral

    Secure mode to use UE

    Lol i was pretty sure i tried like that 😂 thank you haha it worked
  15. dewral

    Secure mode to use UE

    I'm sorry for being dumb but how to do that xD elseif not self then return false elseif self:isPlayer() and target:isPlayer() and self:hasSecureMode() then return RETURNVALUE_YOUMAYNOTATTACKTHISPLAYER I did it like this, seems to work but i have to check everything xD
  16. dewral

    Secure mode to use UE

    anyone? :P
  17. dewral

    Linux Problem Putty OVH

    It can be problem with your internet actually, i'm using internet from mobile phone and i have to restart the phone to get fix it. Don't ask me why i don't know xD
  18. dewral

    TFS 1.X+ storage to outfit tfs 1.5 7.72

    No you have to set storage from NPC side Try here Advanced NPC quest system (https://otland.net/threads/advanced-npc-quest-system.263423/)
  19. dewral

    CreatureEvent [TFS 1.3] updated Slot System

    Do someone got it working on tfs 1.5? I have some problem here is my post if someone want to help - Lua - Tfs 1.5 Updated slot sytem (https://otland.net/threads/tfs-1-5-updated-slot-sytem.280980/#post-2694723)
Back
Top