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

    Lua Function creatureSayCallback and how to get a variable's value?

    I try to write a bank script on my own, but the only thing I do not know how to do is how to get a value from a variable that player has writed? Here is the code: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) local talkState = {}...
  2. waqmaz

    Lua Task - kill x monster. A question.

    Zothion has helped me. Thanks.
  3. waqmaz

    Lua Task - kill x monster. A question.

    Is there a way to make a task, using lua language without using storage? Like storing a variable in global table or something. I do not want to store the variable in a database. Lags.
  4. waqmaz

    Lua FOR LOOP (Display text inside a foor loop one time)

    I know that it should be asked for example using stackoverflow, but it can be a curiosity for many otland users. for i=1,5 do doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, 'Text 5 times.') end To avoid this problem I always do something like this: local i = 0 for i=1,5 do i = i...
  5. waqmaz

    Lua How to combine this array with a function?

    no need to remove local, it is in second file, so can be local. lenght was not 1. thanks.
  6. waqmaz

    Lua How to combine this array with a function?

    File1.lua: sorcerer_spells = { [1] = {spell = 'Death Strike'}, [2] = {spell = 'Flame Strike'}, [3] = {spell = 'Energy Strike'}, [4] = {spell = 'Fire Wave'}, [5] = {spell = 'Energy Beam'}, [6] = {spell = 'Great Energy Beam'}, [7] = {spell = 'Energy Wave'}, [8] =...
  7. waqmaz

    Compiling Compiled app doesn't run.

    does not work
  8. waqmaz

    Compiling Compiled app doesn't run.

    stians dev cpp
  9. waqmaz

    Compiling Compiled app doesn't run.

    I've compiled TFS 0.3.6 TheForgottenServer and compiling has been done OK. I can't run an application. When I click in application it does nothing. It looks like this: https://imgur.com/a/dmOR0
  10. waqmaz

    Modern&RPG Account Maker Template

    No, the owner got crazy and wants 400 PLN for this. I can pay 80 PLN.
  11. waqmaz

    Revamapped Evolution City!

    I do not like the city. Seriously nothing special. And the hedge's light green doesn't fit with the grass.
  12. waqmaz

    Windows help need a query to save chars

    Do you use a modified server by you or it happens on normal server, which has been just downloaded?
  13. waqmaz

    Windows help need a query to save chars

    I can't help you without your code. Give me a code, where the vocation sets.
  14. waqmaz

    Windows help need a query to save chars

    You lose your vocation, because you have a vocation without a promotion. In your script set player a promotion too. You cannot have a higher vocation than knight, paladin, druid, sorcerer with a promotion zero.
  15. waqmaz

    Lua WTF is going on with that array? O_O

    "UID not found". I've tried this way and still doesn't work: function onStepIn(cid, item, fromPos, item2, toPos) registerCreatureEvent(cid, "waterSplash") if item.itemid == 11417 then doSendMagicEffect(getThingPos(cid), CONST_ME_WATERSPLASH) end...
  16. waqmaz

    Lua WTF is going on with that array? O_O

    local t = {5518,5517,5516,5515,5514,5513,5512,5511,5510,5559,5558,5557,5556,5555,5554,5553,5552,5551} -- uid itemkow ze splashem function onStepIn(cid, item, fromPos, item2, toPos) registerCreatureEvent(cid, "waterSplash") for i = 1, #t, 1 do if item.uid == t[i] then...
  17. waqmaz

    Modern&RPG Account Maker Template

    Is it available for znote AAC?
  18. waqmaz

    Lua DoT type spell

    /
  19. waqmaz

    Guess the age of the next poster!

    False 23 Next 23
  20. waqmaz

    Remeres Map Editor - how to change no logout zone color?

    Is it possible to change no logout path color from yellow to whatever? Sometimes I do not se that little yellow no logout color on map or it is really hard to see, if there are all squares coloured, i would like to change it to for example black. Thanks.
Back
Top