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

    Bug in tfs 0.4

    I just tested it and it works. Feature - Perfect Autostacking Items 100,0% Stack All for 0.4 and 0.3.6pl1
  2. buchaLL

    Lua Cast System Viewers

    pid - You can replace whatever you want. This is one element from the table with players (getPlayersOnline()). getPlayersOnline - [LUA] 0.4 TFS Functions - here you can find all functions of TFS 0.4 its getPlayersOnline() not getPlayersOnline(cid) Have a nice evening! :)
  3. buchaLL

    Lua Cast System Viewers

    Try it: function onThink(cid, interval, lastExecution) local count = 0 for _, pid in pairs(getPlayersOnline())do local viewers = getCastViewers(pid) for _,v in pairs(viewers) do count = count + 1 end db.executeQuery("UPDATE players SET...
  4. buchaLL

    Lua Condition tfs 0.4

    Yes, works! :D login.lua local condd = createConditionObject(CONDITION_DAZZLED) setConditionParam(condd, CONDITION_PARAM_TICKS, -1) if getPlayerBlessing(cid, 5) then doAddCondition(cid, condd) end Add the same to your bless script.
  5. buchaLL

    Problem with tfs 0.4 !bless icon

    Lua - Condition tfs 0.4 : )
  6. buchaLL

    Solved Using a spell crashes server (8.60 TFS 0.3.6 - Crying Damson)

    vocations.xml, manamultiplier?
  7. buchaLL

    Desktop Post your desktop!

    ^.^
  8. buchaLL

    Help with this Task Script

    Show onKill script.
  9. buchaLL

    Convert Script TFS 1.2 to 0.4

    function onLogin(cid) registerCreatureEvent(cid, "FriendsPoints") if getPlayerStorageValue(cid, _invite_friends.storages[1]) < 0 then setPlayerStorageValue(cid, _invite_friends.storages[1], 0) setPlayerStorageValue(cid, _invite_friends.storages[4], 0) end if getInvitePoints(cid) > 0 then...
  10. buchaLL

    jakieś tam wspólne tematy naszym celem

    = D btw. Wam też się forum rozsypało?
  11. buchaLL

    Nie leczy, nie kończy się

    config.lua showHealingDamage = true showHealingDamageForMonsters = true
  12. buchaLL

    Problem ze Skryptami TFS 1.2

    if s >= cfg.full then V if s => cfg.full then
  13. buchaLL

    Problem ze Skryptami TFS 1.2

    Hmm.. Nie wiem jak, ale jakoś znaczniki [ I ] się tam znalazły. Usuń je.
  14. buchaLL

    Problem ze Skryptami TFS 1.2

    Stamina: function onUse(player, item, fromPosition, itemEx, toPosition, isHotkey) local s = player:getStamina() / 60 local cfg = {[I]refuel = 42, full = 40} if s >= cfg.full then player:sendCancelMessage("Your stamina is already full.") player:sendTextMessage(MESSAGE_STATUS_CONSOLE_ORANGE...
  15. buchaLL

    Problem ze Skryptami TFS 1.2

    Super. To może teraz pokażesz kod skryptu? ;)
  16. buchaLL

    Lua Colour of a monster

    Simply said, impossible.
  17. buchaLL

    Equip and change outfit

    Change lookType. function onEquip(cid, item, slot) local out = getCreatureOutfit(cid) local outfit = {lookType = out.lookType, lookHead = out.lookHead, lookBody = out.lookBody, lookLegs = out.lookLegs, lookFeet = out.lookFeat, lookTypeEx = out.lookTypeEx, lookAddons = 3}...
  18. buchaLL

    Frag Reward

    fragreward.lua local config = {item = 2152, count = 5, killers = 1} function onDeath(creature, corpse, lasthitkiller) for i = 1, config.killers do doPlayerAddItem(lasthitkiller[i],config.item,config.count) end return true end creaturescripts.xml <event type="death" name="Reward"...
  19. buchaLL

    Frag Reward

    Delete and check if getPlayerIp(cid) ~= getPlayerIp(target) ... end
  20. buchaLL

    Frag Reward

    File name fragsreward is correct?
Back
Top