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

    Help in exp stage

    in your data/XML/stages.xml , open it and you will understand what to do :)
  2. Sirion_Mido

    Sirion_Mido Free Scripting Service (Actions/Movements/Talkactions/Creaturescripts)

    Look first script i had 1 hour making it , so i don't know if it will work or not :) any errors report back Here We Are :) in your movements/scripts create file name siriontest.lua and paste the following: local sirion = { wallid = 1049, -- the wall id firstsqmuid = 425...
  3. Sirion_Mido

    Sirion_Mido Free Scripting Service (Actions/Movements/Talkactions/Creaturescripts)

    Here We Are :) function onUse(cid, item, frompos, item2, topos) local monster = "Demon" if(getPlayerLookDir(cid)==1)then pos.x = pos.x + 1 elseif(getPlayerLookDir(cid)==2)then pos.y = pos.y + 1 elseif(getPlayerLookDir(cid)==3)then pos.x = pos.x - 1...
  4. Sirion_Mido

    Action Promotion using action :)

    thx bro :) haha but really i am not very keen on make scripts at the moment just i go otland check few requests then in 5 min i go logout :) so i make errors because i do more than 1 script in 5 min :)
  5. Sirion_Mido

    [LUA] Promote talk action

    what do you mean?
  6. Sirion_Mido

    ondeath effect

    No understand s;
  7. Sirion_Mido

    Action Promotion using action :)

    i make errors because i no test the scripts ;) Here We Are :) function onUse(cid, item, fromPosition, itemEx, toPosition) local voc = {1,2,3,4} -- here vocations id local item = 2159 -- here item id local count = 100 -- how many items needed local level = 200 -- level needed to use this item...
  8. Sirion_Mido

    ondeath effect

    Here We Are :) <event type="preparedeath" name="onPrepareDeath" event="script" value="preparedeath.lua"/> local function sendLetter(p) local pos = p.pos local letter = p.letter doSendAnimatedText(pos, letter, TEXTCOLOR_WHITE) end function onPrepareDeath(cid, lastHitKiller, mostDamageKiller)...
  9. Sirion_Mido

    Action Promotion using action :)

    Here We Are , tell me if it work or no function onUse(cid, item, fromPosition, itemEx, toPosition) local voc = {1,2,3,4} -- here vocations id local item = 2159 -- here item id local count = 100 -- how many items needed local level = 200 -- level needed to use this item if...
  10. Sirion_Mido

    Action Promotion using action :)

    oh sorry , try this one :P function onUse(cid, item, fromPosition, itemEx, toPosition) local voc = {1,2,3,4} -- here vocations id local item = 2159 -- here item id local count = 100 -- how many items needed local level = 200 -- level needed to use this item if...
  11. Sirion_Mido

    Action Promotion using action :)

    try this one? function onUse(cid, item, fromPosition, itemEx, toPosition) local voc = {1,2,3,4} -- here vocations id local item = 2159 -- here item id local count = 100 -- how many items needed local level = 200 -- level needed to use this item if isInArray(voc,getPlayerVocation(cid)) and...
  12. Sirion_Mido

    TalkAction BUY MORE MAXMANAS TO YOUR CHARACHTER using takaction

    opa i am so sorry really this script was from like 1 or 2 months so i was sound like noob :PPP i edited in main post :)
  13. Sirion_Mido

    Action Promotion using action :)

    Here We Are :) function onUse(cid, item, fromPosition, itemEx, toPosition) local voc = {1,2,3,4} -- here vocations id local item = 8313 -- here item id if isInArray(voc,getPlayerVocation(cid)) and getPlayerItemCount(cid, item) and getPlayerLevel(cid) >= 100 then...
  14. Sirion_Mido

    Sirion_Mido Free Scripting Service (Actions/Movements/Talkactions/Creaturescripts)

    i think that's what you want :S any bugs tell me , and please next time make it step by step and 1. , 2. or 3. ETC local storage1 = 10000 local storage2 = 10001 local msg1 = "You have found the sword so bring it back" -- this is message if get player storage 10000 = 1 local msg2 = "You have...
  15. Sirion_Mido

    [FREE] Slave Ots Free Scripting Service

    try this :S local config = { price = 0, -- Price of first rebirth priceIncrease = 0, -- Works as 'price' + current rebirths * priceIncrease. rebirthLevel = 717171, -- Level for first rebirth. rebirthIncrease = 0, -- Works as 'rebirthLevel' + current rebirths * rebirthIncrease. maxRebirths =...
  16. Sirion_Mido

    [FREE] Slave Ots Free Scripting Service

    which one
  17. Sirion_Mido

    [FREE] Slave Ots Free Scripting Service

    this one .. if (getPlayerLevel(cid) >= rebirthLevel) then
  18. Sirion_Mido

    [FREE] Slave Ots Free Scripting Service

    my first script should work , try this i dont know if it will work :S local config = { price = 0, -- Price of first rebirth priceIncrease = 0, -- Works as 'price' + current rebirths * priceIncrease. rebirthLevel = 717171, -- Level for first rebirth. rebirthIncrease = 0, -- Works as...
Back
Top