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

    Lua TFS 0.3.6 Actions freeze rune exhaust target use of item id

    How would I go about implementing a line in this script below to make your target exhausted from using a specific item id? rep+ local freezetime = 6 local cooldown = 15 -- time to use again local storage = 19002 local combat = createCombatObject() setCombatParam(combat...
  2. ares413

    TFS 0.3.6 ACTIONS Freeze rune exhaust item id

    i would like to implement a line in this script below to make your target exhausted from using a certain item id, ie rune id TFS 0.3.6 local freezetime = 6 local cooldown = 15 -- time to use again local storage = 19002 local combat = createCombatObject() setCombatParam(combat...
  3. ares413

    [TFS v0.2.15(mystic spirit)] Mods

    if my distribution didn't come with a mods folder, if i were to add one with scripts and such would they work or would the executable need to be recompiled to do so?
  4. ares413

    Krewella alive piano intro

  5. ares413

    SQL querie

    What SQL querie would i run in order to add a column to every account row named 'type' and setting it to '1' for all accounts?
  6. ares413

    [LUA] setCombatCondition(combat, conditionExhaustHeal) -- freeze rune

    i have this script for a freeze rune: local freezetime = 6 local cooldown = 15 -- time to use again local storage = 19002 local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ICE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local...
  7. ares413

    Lua Error

    im trying to get this vipcheck script working: function onLogin(cid) if getPlayerVipDays(cid) >= 1 then doSendAnimatedText(getPlayerPosition(cid), "You have ".. getPlayerVipDays(cid) .." vip days left.", TEXTCOLOR_ORANGE_1) end return true end getting this error: [15:19:31.252] [Error -...
  8. ares413

    Shop system problem

    I'm getting no error, only problem is the script doesnt recognize the player has an item waiting to be sent. heres pictures of shop_history and shop_offer and heres the global event script: function onThink(interval, lastExecution, thinkInterval) local result = db.getResult("SELECT *...
  9. ares413

    [LUA] Create Boss from fishbowl, summon error

    i have a script, sorta like a capturing a pet system, but im trying to change into where you right click the fish bowl, and it creates a monster that attacks everyone, NOT a summoned creature. currently everything in the script works 100% except that part, heres my script: local storage =...
  10. ares413

    [NPC]VIp trade

    Looking for an NPC that sells an item and takes a different item from the player rather than gps.. please help rep++
  11. ares413

    Lua whats wrong with this script

    local storage = 56486 function onDeath(cid, corpse, deathList) if isMonster(cid) then if getCreatureMaster(cid) ~= cid then doCreatureSetStorage(getCreatureMaster(cid), storageLol, os.time() + 10) end end return true end i keep getting this error...
  12. ares413

    [USA] Abandon Online Rebirth 8.6

    Custom rebirth OT website: abandon.no-ip.org IP: abandon.no-ip.org port: 7171 -Custom weapons and sets obtainable in game -Custom Monsters -Custom bosses -custom quests -custom evo map -custom client -unlimited rebirths, max level 5000 -Advanced promotions -monster fishing system -events like...
  13. ares413

    [PHP]Rebirth in Highscores

    fixed.
  14. ares413

    how to make an item useable but not moveable

    as the title says, I'm trying to put the item id "7726" on a stone. Its paper so when you click it it says " welcome" but players can't move it Edit: i also am looking for a way to fix this problem: when holding down a rune hotkey, paladins stop shooting, i know this is an easy fix i had it...
  15. ares413

    Windows Port forward nightmare

    So i have both 7171 and 7172 port forwarded with my static ipv4 address. which ip address do i need to use for 80? for my webserver? i use xampp. and im just confused, between global ip, static ip, and localhost ip. i dont know what im doing wrong or what to even do. static is 192.168.1.3...
  16. ares413

    [LUA] A couple different scripts

    I was hoping to get help with a couple scripts at once to avoid posting so many new threads.. first off i've seen this done on a few servers, but i was looking for a max level script, that says you've maxed out go rebirth and doesnt let you gain anymore experience at a certain level. i also...
  17. ares413

    mysql error help!

    i keep getting this error, and now its kicking me offline [12:1:32.293] mysql_real_query(): UPDATE `players` SET `onlinetimeall`=players.onlinetimeall+300 WHERE `online` = 1; - MYSQL ERROR: Unk nown column 'onlinetimeall' in 'field list' (1054)
  18. ares413

    [SQL] Rebirth Querie

    i need to know what exact querie to enter, so that my mysql database adds a rebirth table to players, also, how would i update that number everytime a player rebirths? here's my rebirth script: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler)...
  19. ares413

    [Lua] Rebirth based experience stages

    is there a way to set rebirth based experience stages? for example.. local config = { storage = 2500, } check onLogin if (getPlayerStorageValue(cid, config.vipstorage) <= 5) then set experience rate = x; then you would register the event in login.lua and stuff.. obviously...
  20. ares413

    Rebirth Tile

    i have a rebirth server im working on, the global storage for rebirth is 2500 i want a tp(portal) that when stepped on, checks if that storage is 5 or more, and sends you through if so. if not it teleports you to a different position. can anyone help? rep++ Edit: i know its a movement step...
Back
Top