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

    Lua [TFS 1.4.2] Shows a modalwindow when onStepIn

    local action = 50045 function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition) if not isPlayer(cid) or isPlayerGhost(cid) then return true end if item.actionid == action then local title = "Teleport Confirmation" local message = "Are you...
  2. GamerGoiano

    help to convert this script for tfs 1.5 nekiro

    function onUse(cid, item, fromPosition, itemEx, toPosition) local storageId = 50460 -- define o ID da storage if getPlayerStorageValue(cid, storageId) == -1 then doPlayerAddItem(cid, 500, 1) doPlayerAddItem(cid, 501, 1) doPlayerAddItem(cid, 502, 1)...
  3. GamerGoiano

    [OTCV8] Characterlist vocation display

    characterlist.lua function loadCharacterList(characters) g_characterList = {} for _, characterInfo in ipairs(characters) do local character = { name = characterInfo.name, worldName = characterInfo.worldName, worldIp = characterInfo.worldIp, worldPort =...
  4. GamerGoiano

    [OTCV8] Characterlist vocation display

    Source of Server and Client @xaii
  5. GamerGoiano

    AAC Char Bazaar in myaac doesnt work?

    Use the MySQL "DEFAULT" keyword to specify a default value for the column in the table schema. For example: ALTER TABLE mytable MODIFY bid_account VARCHAR(255) NOT NULL DEFAULT ''; This will set the default value for the "bid_account" column to an empty string if no value is provided in the...
  6. GamerGoiano

    Problem With NPC

    modules.lua EXHAUST_STORAGE = 45678 -- Change the storage here npcsystem.lua (add in the start of the function) local exhaust = getCreatureStorage(cid, EXHAUST_STORAGE) if exhaust and exhaust >= os.time() then selfSay(string.format(__L(cid, "You need to wait %d seconds to do that again.")...
  7. GamerGoiano

    RevScripts top 10 players get skull

    globalevents.xml <globalevent name="skull" interval="3600000" event="script" value="skull.lua"/> data/globalevents/scripts skull.lua function onThink(interval, lastExecution) if lastExecution ~= 0 and os.time() - lastExecution < 3600 then return true end local players =...
  8. GamerGoiano

    RevScripts Refin System

    You can implement this code in your code. local conf = { ["tokensPerLevel"] = 10, ["level"] = { -- [item_level] = {successPercent= CHANCE TO UPGRADE ITEM, downgradeLevel = ITEM GETS THIS LEVEL IF UPGRADE FAILS} [1] = {successPercent = 100, downgradeLevel = 1}...
  9. GamerGoiano

    remove spawn with player on screen

    If there is at least one player in the spawn position, the monster will not be spawned. The findPlayer function is used to check if there is any player in the spawn position, and if found, the checkSpawn function will not spawn any monster at that moment and will wait until the next interval to...
  10. GamerGoiano

    Help with NPC Mission (x items for Y reward)

    I removed the storage check in code so the player can do this unlimited times local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid)...
  11. GamerGoiano

    Help with NPC Mission (x items for Y reward)

    What TFS Version? Try this: function onUse(cid, item, fromPosition, itemEx, toPosition) local player = Player(cid) local requiredItems = {100, 101, 102} local rewardItems = {200, 201, 202} if player:getStorageValue(5400) == 1 then...
  12. GamerGoiano

    PokeDash website problem.

    The website is ZnoteAAC, What error u got?
  13. GamerGoiano

    [OTCV8] Characterlist vocation display

    You will need serverside opcode to send the outfit and clientside to receive the outfit Serverside in source: void SendCurrentOutfit(Player* player) { Outfit_t outfit = player->getOutfit(); Packet packet; packet << (uint16_t)7554; // opcode packet << outfit.lookType; packet...
Back
Top