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

    Solved add points on gesior

    use this doRemoveItem(item.uid, 1) i just used what u supplied lmao
  2. RosOT

    Solved add points on gesior

    ? function onSay(cid, words, param) local THEPOINTS = 1 if doRemoveItem(cid, 2157) == TRUE then db.executeQuery('UPDATE accounts SET premium_points=premium_points+THEPOINTS WHERE id=' .. getPlayerAccountId(cid)) doSendMagicEffect(getPlayerPosition(cid), 15) doPlayerSendTextMessage(cid...
  3. RosOT

    Solved add points on gesior

    db.executeQuery('UPDATE accounts SET premium_points=premium_points-200 WHERE id=' .. getPlayerAccountId(cid)) is to -points and you can do the rest :|
  4. RosOT

    Solved add points on gesior

    db.executeQuery('UPDATE accounts SET premium_points=premium_points+200 WHERE id=' .. getPlayerAccountId(cid)) Look at that for a bit and see how it works then use it how you would like it to be used. also here is a link i found in 2 seconds with same concept...
  5. RosOT

    [Request] Text Up With full EQ

    he wants it so if you have helmet armor legs on all at once it does the animation when u equip the final piece :| Last idea im done here~ local IDHEAD = PUT ITEM ID local IDARMOR = PUT ITEM ID local IDLEGS = PUT ITEM ID local THETEXT = "BINGO" function onEquip(cid, item, slot) if...
  6. RosOT

    [Request] Text Up With full EQ

    Use @owned idea and add getPlayerSlotItem(cid, CONST_SLOT_HEAD).itemid == itemid and getPlayerSlotItem(cid, CONST_SLOT_ARMOR).itemid == itemid and getPlayerSlotItem(cid, CONST_SLOT_LEGS).itemid == itemid and getPlayerSlotItem(cid, CONST_SLOT_RIGHT).itemid == itemid then and work with it until...
  7. RosOT

    [Request] Text Up With full EQ

    This is just an example you could use .. alter it anyway you want but im not making the whole script for you. If you know where and how to add this. it is meant to repeat itself if the items are still on so figure it out. I used this in an old ot so i know it works the way i made it to work...
  8. RosOT

    Unknown column 'acesstime' in 'field list'

    like this.. remove the % signs [IMG%]http://i60.tinypic.com/1fu0j5.jpg[/IMG%]
  9. RosOT

    Lua Creature OnDeath cast spell?

    Just use the script i supplied you it should work pretty good if you want it to deal damage add it
  10. RosOT

    Lua Creature OnDeath cast spell?

    Have a hunk of messy code that may not work :p not tested. 4x holy orb's shoot from the corpse. Text appears above corpse "Orange". Effect at the corpse aswell. function onDeath(cid, corpse, deathList) --Edit Start-- local DistanceEffect = CONST_ANI_HOLY local MonsterEffect = CONST_ME_HOLY...
  11. RosOT

    Riptide - Dungeon(Test:Offline) Give ideas an opinions~

    Yes you are right i used the same idea and his script as a base but i redid his for TFS:1.1 and redid it different and my effects are always different positions as his repeat if you watched my video and his you would notice that. And not all the spells are like that by the way just saying >.<'...
  12. RosOT

    Is it possible to create a vocation that "tp" when hitting someone

    @Limos i am guessing he is either using TFS:0.3.6/0.3.7.
  13. RosOT

    Riptide - Dungeon(Test:Offline) Give ideas an opinions~

    Surprised server never shutdown or my computer never exploded :D and we had it up to 100 something thousand lmao :D
  14. RosOT

    the version more stable tibia

    https://github.com/otland/forgottenserver/releases
  15. RosOT

    Solved doTransformItem doubt

    @Badenhask Server Version and show us the script you might be doing something wrong :)
  16. RosOT

    Riptide - Dungeon(Test:Offline) Give ideas an opinions~

    Hmm, Every 10 skill = 1 and your start with 1 effect so at skill 100 you will have 10 effects on screen. The video was just to demonstrate what it could be ;>
  17. RosOT

    Riptide - Dungeon(Test:Offline) Give ideas an opinions~

    I forgot to tell you, Those effects only get that insane around 150 Ml / Sword / Axe Etc. And i will be using the skill points system it will be the only way to gain skills so 1 skill per lvl u will have 100 points to spend on your character. so if your a mage ur going to want certain skills...
  18. RosOT

    tfs 1.1 get player level

    beat me to it :) Thanks for that list honestly.
  19. RosOT

    edite my teleport

    Hes saying when you use his "Teleport Item" it does a countdown from 10 and he wants it if the player is pushed or if he walks away the teleport countdown stops.
Back
Top