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

    TFS 1.X+ Exeta res not working

    I'm using the TFS 1.3 downgraded version to 8.60 and the unmodified challenge.lua file, but it just doesn't work, the spell is executed and no errors are shown in the console: local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)...
  2. Rodo

    TFS 1.3 8.60 crashing

    My TFS 1.3 (8.60 downgrade by nekiro) server has been crashing a couple of times today, I've used the Attach to Process option to generate a dump file and this is what I got: ******************************************************************************* *...
  3. Rodo

    Linux Weird boost error at startup

    [0:52:59.485] >> Test server Online! theforgottenserver: /usr/include/boost/thread/pthread/condition_variable_fwd.hpp:38: boost::condition_variable::~condition_variable(): Assertion `!pthread_cond_destroy(&cond)' failed. Aborted Any idea? :huh:
  4. Rodo

    Linux MYSQL ERROR: Lost connection to MySQL server during query

    I'm running TFS 0.4 under debian and I get randomly this error when someone logout [7:26:32.767] Xx has logged out. [7:27:02.767] mysql_real_query(): UPDATE `players` SET `lastlogin` = 1290755373, `lastip` = 2173476041, `level` = 22, `group_id` = 1, `health` = 395, `healthmax` = 395...
  5. Rodo

    Linux 0.4 consuming so much RAM

    I just compiled my TFS 0.4 under Debian minimal 64-bits, and at the time of test I started the server and I can figure that it's consuming 600 mb (running with the default map), what could be the problem?
  6. Rodo

    PayPal

    Well, the problem is that my automated paypal donation were working well since ever, but from now when people donate the ipn don't add the fields to the db (email, currency, time, etc) and players don't receive the items anymore. Don't tell me that check de db, user, psw because it's right...
  7. Rodo

    Showing [Baned] like highscores

    Well, I have the following script on my layout.php but I want that if player is banned, the text [Banned] appear like the highscore section, can someone make this one? :thumbup: <?php $limitt = 5; $zap = $SQL->query('SELECT `name`, `level` FROM `players` WHERE `group_id` <...
  8. Rodo

    Venta de VPS por deposito

    Bien, en esta ocasión me toca anunciarles mi venta de servidores VPS a precios en verdad muy accesibles: En verdad los precios son muy accesibles si toman en cuenta que solo pueden pagar el primes mes, y si ganan con sus donaciones continuar, si no pues la verdad no perdiste...
  9. Rodo

    CreatureEvent Prevent lose items without AOL

    Creaturescripts.xml: <event type="death" name="NoAol" event="script" value="noaol.lua"/> Add to login.lua: registerCreatureEvent(cid, "NoAol") noaol.lua: function onPrepareDeath(cid, deathList) if (isPlayer(cid)) == TRUE then doCreatureSetDropLoot(cid, false)...
  10. Rodo

    Suggestion Bump Protection

    The image talk by itself :peace: More info: Prevent Bump on Forum Threads Before X Time - vBulletin.org Forum
  11. Rodo

    Suggestion Map section

    I suggest that include a screenshot should be a rule to post a map ;)
  12. Rodo

    Action Adding a new coin

    With this system you will be able to transform 100 crystal coins to a new coin without making new actions, only adding variables at lib, also you can use it to buy with it as a normal coin :) Example: ___________________ ----> ___________________ ----> ___________________ 1...
  13. Rodo

    Gray reputation

    I'm just asking what means that someone gives reputation but the icon is gray instead green? :confused:
  14. Rodo

    Complaint Thread deleted

    Why my thread in Adversiment was deleted? :D
  15. Rodo

    CreatureEvent Automatic AOL buyer

    With this script, players will be able to buy an amulet of loss automatically when they die just using the comand /aol on, /aol off ¿Does this system is really usefull? Yes!, you don't lose your time going to shop tu buy aol, you go directly to the war! CreatureScripts <event...
  16. Rodo

    Action Frags cleaner with skull remover

    Here you are, a script for clean unjustified frags, you don't need to relog... use it and frags and skull removed :thumbup: local config = { remove_Skulls = true; }; function onUse(cid, item, frompos, item2, topos) if config.remove_Skulls == TRUE then...
  17. Rodo

    Action Transform backpack

    Well, I just make a little and simple script to transform the original backacpk to demon backpack when you burn it :blink: function onUse(cid, item, fromPosition, itemEx, toPosition) if(itemEx.itemid == 1988) then doTransformItem(itemEx.uid, 10518) doRemoveItem(item.uid,1)...
  18. Rodo

    Action Mana Rune by Actions

    This mana rune by action is usefull if you wanna customize effects, MIN, MAX, use it or no in protection zone, give pz or no or throw it to another players :thumbup: local MIN = 100 local MAX = 120 local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust...
  19. Rodo

    CreatureEvent Auto Save character (Excelent if your server crash)

    Worried because when your server crash the players loss a lot of level/skills/addons/items?, so this script is your solution. It save the character on each advance, it doesn't matter if is level or skill, it will save it. <event type="advance" name="advance" event="script"...
  20. Rodo

    Complaint Why im not donator anymore?

    Why? :blink:
Back
Top