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

    TFS 0.X tfs 0.4 Banuta Shortcutt not working

    local config = { [50084] = Position(32857, 32667, 9), [50085] = Position(32892, 32632, 11), [50086] = Position(32886, 32632, 11) } local Storage = { DeeperBanutaShortcut = 25121 } function onStepIn(cid, item, position, fromPosition) if not isPlayer(cid) then return...
  2. flaviiojr

    Action Lever by time

    local config = { level = 50, -- level mínimo maxTimes = 3, -- quantas vezes poderá usar timeToWait = {1, 'day'}, -- tempo para usar novamente após atingir o max_times maxPlayers = 3, -- máximo de players dentro da área room = {fromPos = Position(32312, 32507, 8), toPos =...
  3. flaviiojr

    TFS 0.X tfs 0.4 Banuta Shortcutt not working

    local Storage = { DeeperBanutaShortcut = 25121 } function onUse(cid, item, fromPosition, itemEx, toPosition) if itemEx.actionid ~= 62378 then return false end if getPlayerStorageValue(cid, Storage.DeeperBanutaShortcut) > 0 then doPlayerSendTextMessage(cid...
  4. flaviiojr

    Lua Tanjis Boss

    Optimization for your TFS 1.3, if have errors only show me ! local config = { monsterName = 'Tanjis', bossPosition = Position(33647, 31242, 11), centerPosition = Position(33632, 31231, 11), rangeX = 10, rangeY = 10 } local function checkBoss(centerPosition, rangeX, rangeY...
  5. flaviiojr

    TFS 1.X+ Problem with Table and player saving

    CREATE TABLE `player_rewards` ( `player_id` int(11) NOT NULL, `sid` int(11) NOT NULL, `pid` int(11) NOT NULL DEFAULT '0', `itemtype` smallint(6) NOT NULL, `count` smallint(5) NOT NULL DEFAULT '0', `attributes` blob NOT NULL )
  6. flaviiojr

    Action Lever by time

    Man, only add this function in data/lib/core/player.lua
  7. flaviiojr

    Action Lever by time

    Implement this function: Player.setExhaustion, Player.getExhaustion [TFS 1.0] local config = { level = 50, -- level mínimo maxTimes = 3, -- quantas vezes poderá usar timeToWait = {1, 'day'}, -- tempo para usar novamente após atingir o max_times maxPlayers = 3, -- máximo de...
  8. flaviiojr

    Action Lever by time

    local config = { level = 50, -- level mínimo maxTimes = 3, -- quantas vezes poderá usar timeToWait = {1, 'day'}, -- tempo para usar novamente após atingir o max_times maxPlayers = 3, -- máximo de players dentro da área room = {fromPos = Position(32312, 32507, 8), toPos =...
  9. flaviiojr

    Action Lever by time

    local config = { level = 50, -- level mínimo maxTimes = 3, -- quantas vezes poderá usar timeToWait = {1, 'day'}, -- tempo para usar novamente após atingir o max_times maxPlayers = 3, -- máximo de players dentro da área room = {fromPos = Position(32312, 32507, 8), toPos =...
  10. flaviiojr

    TFS 1.X+ father's burden action corpses problem tfs 1.3

    Check storage and if you don't get storage == 1
  11. flaviiojr

    TFS 0.X NPC accept money on hands and bank money

    You need do changes in the fuction in luascript.cpp
  12. flaviiojr

    MyAAC v0.7.12

    I do not see the name of the cities, I can not create players with the chosen city ... When choosing any city, it arrows the city 0 in the database
  13. flaviiojr

    [MyAAC][Plugin] Better Downloads Page

    thank you, really was my error :S
  14. flaviiojr

    [MyAAC][Plugin] Better Downloads Page

    I did the installation and there was no change in the layout, it still shows the primary change made in twig ...
  15. flaviiojr

    MyAAC v0.7.12

    my list of cities does not appear the name ... The list appears, but without the names of the cities, how to correctly configure the config?
  16. flaviiojr

    Segmentation fault core dumped.

    try create a log using gdb !
  17. flaviiojr

    Looking for a professional php/java

    Thiefs...
  18. flaviiojr

    Buy object builder working with 10.00+ and 11.00+ versions

    oh man, very thanks !
  19. flaviiojr

    Monster direction

    How to check the targets that are in front of the monster? Example: The monster casts a spell, and only casts the spells to the players who are in the direction of it ... So, whoever is behind it does not receive the damage ... I'm not good at spells, could anyone give me an idea? Thank you...
Back
Top