• 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. Troll Scripter

    Troll Scripter's Free Script Service.

    Maybe I'll make this script someday, but not today..
  2. Troll Scripter

    Troll Scripter's Free Script Service.

    function onUse(cid, item, fromPosition, itemEx, toPosition) setPlayerStamina = 2520 end
  3. Troll Scripter

    Troll Scripter's Free Script Service.

    Go look around, I'm pretty sure Mock had a rain system on his server, maybe he released the script.
  4. Troll Scripter

    Troll Scripter's Free Script Service.

    function onLogout(cid) for os.time("%S", 60*3) do doPlayerAddStamina(cid, 1) end end If that doesn't work then it has to be done in source, also I can't make you a pet system, it's too big. But there are already existing pet systems on the forums :)
  5. Troll Scripter

    Troll Scripter's Free Script Service.

    Only make lua requests here :/
  6. Troll Scripter

    Troll Scripter's Free Script Service.

    local beforePos = {x = 100, y = 100, z = 7}, {x = 101, y = 100, z = 7}, {x = 102, y = 100, z = 7}, {x = 102, y = 100, z = 7}, local afterPos = {x = 100, y = 100, z = 7}, {x = 101, y = 100, z = 7}, {x = 102, y = 100, z = 7}, {x = 102, y = 100, z = 7} function onUse(cid, item, fromPosition...
  7. Troll Scripter

    Troll Scripter's Free Script Service.

    How about they just have the money in their backpack or hand?
  8. Troll Scripter

    Troll Scripter's Free Script Service.

    Sorry, I forgot to add to the thread that I don't do spells :)
  9. Troll Scripter

    Troll Scripter's Free Script Service.

    I have edited the script :)
  10. Troll Scripter

    Troll Scripter's Free Script Service.

    is getThingFromPos for creatures and items?
  11. Troll Scripter

    Troll Scripter's Free Script Service.

    try this. local pos = {x = 100, y = 100, z = 7}, {x = 101, y = 100, z = 7}, {x = 102, y = 100, z = 7}, local transformItemTile = {x = 103, y = 100, z = 7}, local item1, item2, item3 = [2476, 2147, 2160], local newItem = [7000] function onUse(cid, item, fromPosition, itemEx, toPosition) if...
  12. Troll Scripter

    Troll Scripter's Free Script Service.

    So those three items will turn into 1 item is what you mean?
  13. Troll Scripter

    Troll Scripter's Free Script Service.

    Request scripts here and I'll make them for you if it's not ALL too much work to be done. I am scripting with the latest TFS 0.4 functions, so it is not recommended to ask for a script if you are using below 0.4. I don't edit existing scripts because I don't want to go trough other people's...
  14. Troll Scripter

    Checking storage in script

    Btw, sorry I bumped the thread with my script. I just had this side open for hours while I was playing LoL. After that I made the script and then I saw someone had already made it for you :P
  15. Troll Scripter

    Checking storage in script

    function onUse(cid, item, fromPosition, itemEx, toPosition) if(getPlayerPromotionLevel(cid) > 0) and getPlayerStorageValue(uid, 11552)+1 then doPlayerSendCancel(cid, "You are already promoted.") else doRemoveItem(item.uid, 1) doPlayerSetPromotionLevel(cid, 1)...
  16. Troll Scripter

    Solved VIP Promotion with a Item (Action)

    local days = [90] function onUse(cid, item, fromPosition, itemEx, toPosition) if getPlayerPromotionLevel(cid) == 1 and getPlayerPremiumDays(cid) == 0 then doRemoveItem(item.uid, 1) doPlayerAddPremiumDays(cid, days) setPlayerPromotionLevel = 2 doSendMagicEffect(getCreaturePosition(cid)...
  17. Troll Scripter

    Solved VIP Promotion with a Item (Action)

    I don't get it, what EXCATLY is it that you want? Because I keep reading the script over and over again but it's so bad I can't understand what you guys are trying to do here lol
  18. Troll Scripter

    Help with easy script

    Is the Item ID of the lever 1945? and is the actionID of the lever 1234567? Else it won't work ofcourse.
  19. Troll Scripter

    Help with easy script

    local beforePos = {x = 738, y = 700, z = 7}, local afterPos = {x = 743, y = 696, z = 7} function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid == 1945 and item.actionid == 1234567 and getTopCreature(beforePos) == isPlayer(cid) then doTransformItem(item.uid, 1946...
Back
Top