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

    TalkAction Reset system by stages

    just an adaptation of my old system "reset" now included the use of "stages". --[[( Marcryzius D'evil )]]-- function onSay(cid, words, param) local C ={ level = 8, -- LVL need to first reset. RemainingLvl = 8, --LVL that will remain after reset. pid = getPlayerGUID(cid), -- not fuse. stages...
  2. marcryzius

    Action Doors system.

    With this script to use a key in the door it will open and will be possible to open and close the door until it is locked with the key again. replace your doors.lua by this script: function checkStackpos(pos,POS) local new_pos = (pos == nil) and POS or pos new_pos.stackpos = 255 local...
  3. marcryzius

    profission woodcutter

    this is a simples script to job woocutter --[[> Marcryzius D'evil <]]-- function onUse(cid, item, fromPosition, itemEx, toPosition) local arvores = {2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2712,2717,2718,2720,2722} --id of tree local function skill(cid) local skills =...
  4. marcryzius

    2 simples function

    this function is an alternative to using the function tonumber(). transforms a 'string' to 'numbers'. the other returns all the elements function getnumber(n) --[[> Marcryzius <]]-- local v = 0 if type(n) == 'number' then return n end for s = 1,#n do for N = 0,9 do if ''..N == n:sub(s,s)...
  5. marcryzius

    Action small script to anihilator quest.

    this is a small script to annihilator. not have the system of rewards, because i use another system. --[[> Annihilator script by Marcryzius D'evil <]]-- local config ={ pos_players ={--pos players in the lever {x=247, y=659, z=13, stackpos=253}, {x=247, y=660, z=13, stackpos=253}...
  6. marcryzius

    TalkAction my first command of the ranks.

    with this script you can get the ranks of professions using storagesvalues. and can be used by system resets. --[[Marcryzius Devil]]-- function onSay(cid, words, param) local players,result,str = getConfigInfo('maxranks'),nil,"Ranks by (Marcryzius D\'evil).\n" local config ={ expml = {...
  7. marcryzius

    comands for access.

    I'm posting this script because a person in my msn he asked me so I'm posting them to everyone. this is the script that checks all commands talkactions according to access the player. --[[> marcryzius <]]-- function onSay(cid, words, param) local file =...
  8. marcryzius

    change version

    how can i change the version of my server that is 8:42 using the sources for version 0.3.3 tell me what I gotta do to change the version of my server using the sources. what i have to exchange in the sources? thank you all for helping me.
  9. marcryzius

    doubt

    is the difference between using (gui) and (console)?
Back
Top