• 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. Zuma Master

    Lua Calling variable from other script

    Always happy to help.
  2. Zuma Master

    Keep one, drop one

    ^ *facepalm* flying bat
  3. Zuma Master

    Team League of Tibians - MOBAtserv

    You might as well just join Teckman on his project. It's pretty awesome.
  4. Zuma Master

    Lua Calling variable from other script

    I believe Tarjei found a work-around for that type of problem... I'll search up his thread, give me a minute. *EDIT*: Tarjei's method to save arrays in a single storage value As for your concern about getting a different player's storage value, you simply find a way to get his cid, and then...
  5. Zuma Master

    Lua Calling variable from other script

    You should use the storage method. Understanding Storages It should work just fine with your issue. Simply make the script that raises the players level register said level to a storage key using: [code=lua]setPlayerStorageValue(cid, your_storage_here, ((getPlayerStorageValue(cid...
  6. Zuma Master

    Need simple script

    local t = { timer = 60, rockid = 1355, -- rock id rockpos = {x= 1697,y= 1219,z= 8}, -- rock position storage = 60050, } local function addRock(item, cid) setGlobalStorageValue(cid, t.storage, -1) doTransformItem(item.uid, item.itemid + 1) doCreateItem(t.rockid, 1...
  7. Zuma Master

    Windows Server clean takes 2 minutes, help

    I'm pretty sure he used the already-compiled version.
  8. Zuma Master

    Solved I would like to bring this issue up!

    Gesior typed what that line should look like, but in case you actually change it, It saves the new item with a float-attribute in the database in an incorrect form, And thus, causes the item to be "fucked". (I honestly do not understand what he meant exactly :S)
  9. Zuma Master

    addDialog function

    @Summ, Can 9.6 do that? (I know he said below 9.7, which applies to 9.6, but I'm asking you to make sure)
  10. Zuma Master

    Crash Bug OTClient 0.6.2

    I suppose you should place this under the OtClient subforum...
  11. Zuma Master

    Npc help

    I think he may be using OtServ 0.6.3...
  12. Zuma Master

    Rubies Quest

    local storage = 23514 function onUse(cid, item, fromPosition, itemEx, toPosition) if getPlayerStorageValue(cid, storage) < 1 then local bag = doPlayerAddItem(cid, 2147, 6) doPlayerSendTextMessage(cid, MESSAGE_INFO_ADVANCE, "You have found 6 small rubies.")...
  13. Zuma Master

    [Sweden] - Project XDC - 8.6 (Closed)

    ^ Ever heard about a VPN?
  14. Zuma Master

    Solved Globalevent: attempt to call global

    I already fixed it up for him :) The problem wasn't just that, he was trying to use this script in an OTSERVER 0.6.3 based distribution.
  15. Zuma Master

    PZ log out

    My thoughts exactly.
  16. Zuma Master

    Linux Dedicated server [Requirements]

    Depends on the size of your map. *EDIT-1*: In MB. (Megabytes)
  17. Zuma Master

    PZ log out

    Well, there are many ways to do this. MANY. I'll give you a simple one though, it should work fine for your needs. 1- Go to "datapack/globalevents/" and open "globalevents.xml", then add this line to it: <globalevent name="removesigninpz" interval="500" event="script"...
  18. Zuma Master

    Solved Globalevent: attempt to call global

    It means the server is not recognizing 'pos' as a local key available in your script. If it cannot find 'pos' as a local key, it attempts to find it as a global key. If that also fails, the server will print that error. If you want me to help you with it, feel free to tell me. *EDIT-1*: And by...
  19. Zuma Master

    Solved Cast System(Removing+compiling)

    0.4? Nothing about 0.4 is mentioned in this thread. Perhaps the OP is talking about Mystic Spirit. (hint: perhaps)
  20. Zuma Master

    Leveling by walking

    Well I thought the onCast() event would cancel the spell if I used return false, but that didn't work out :/. @OP, Go give my script another try. *EDIT-1*: If it isn't working again, your best bet is to follow Potar's post. It's somewhere around page 2-4 I believe.
Back
Top