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

    Transform item upon creation

    How can I transform an item inmediatly when it's created (/i [item] or with a chest)? e.g. -- Function missing. Dunno what to use if(doPlayerAddItemEx(cid, XXXX, true)) then doTransformItem(item.uid, XXXX) end
  2. Ratser

    Multiple items in table

    How can I use more than 1 itemid in a table? I tried with this...and failed: function onUse(cid, item, fromPosition, itemEx, toPosition) local ITEMS = { [{8977, 9002}] = {"PUDDI PUDDI PUDDI PUDDI"} } local items = ITEMS[{item.itemid}] if(not items) then return false end...
  3. Ratser

    Windows Assertion Failed

    Is it a PC or a TFS problem? This error appeared after I changed my current arena system to this: Action|Creaturescript. Strangely enough, I tried returning to my last arena script and even disabling the full pvp-arena system but the error still appears.
  4. Ratser

    [Action] Backpack of Potions

    I've seen different scripts for different "backpack of potions switches" but what I want is to merge those into a single script file. I made this 5 mins ago (sleepy, with lotsa lag and spaghetti [Obviously the script doesn't work {I tested it}]): local POTIONS = { [1515] = {cost = 400...
  5. Ratser

    [?] Special Description (solved) | Jail with timer (solve it...if you dare)

    I have 1 problem and 1 request... Exactly like the Abacus...I tried to make a script that gives an item a "special description" based on what it's written on it. Also, I wanted to make players only see this description if they stand 2 SQMs from the item or closer....but it didnt work...
  6. Ratser

    Account Manager logs off automatically

    So...there's a little problem that's been bugging me for a long time. After somebody logs on my account manager he/she/(it) has exactly 1 minute before it logs off automatically. I really don't know if this only happens on TFS 0.3.6pl1, any lower version (I don't remember having that problem on...
  7. Ratser

    [Creaturescript] Invincible monster (endless HP loop / stays at 1HP)

    Two requests: A script that cures completely the HP of a monster if it goes to 0. A script that makes a monster's HP stay in 1. It can be cured and you can continue to attack it but its HP may never fall to 0.
  8. Ratser

    [Action] The Shield Nevermourn | Claw of 'The Noxious Spawn'

    Ok, so...I was trying to create a script for The Shield Nevermourn according to its current action in Global but I've been having some errors in console: [16/07/2010 11:17:09] [Error - Action Interface] [16/07/2010 11:17:09] In a timer event called from: [16/07/2010 11:17:09]...
  9. Ratser

    [Request] Make *insert GroupID name here* visible

    So, as the title says, I want a script (would be better if its a Talkaction) to make whoever is with /ghost (and also whoever is with the "Total invisibility" flag if its possible) visible. It would be something like 'exana ina' but for /ghost. IGNORE THIS ...not totally but read the third...
  10. Ratser

    [Request] Bounty Hunter System Board

    I managed to set successfully the Bounty Hunter System on my server but I want the players to actually see who has been put on bounty (something like a WANTED poster). I was thinking on an action script to use on a blackboard item, but scripts involving Database actions/queries/etc. are not my...
  11. Ratser

    Amulet Of Loss

    I have a problem with the Amulet Of Loss, it disappears when dying but doesn't protect the player from losing items. I am using TFS 0.3.4 (Crying Damson). Here are the files playerdeath.lua and items.xml data\creaturescripts\scripts\playerdeath.lua: local config = { deathListEnabled =...
Back
Top