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

    ¿ Los Tigres Se Aceptan en el zoo de otland ?

    ola k ase
  2. Ratser

    Post the scariest picture you can find!

    Amazing the things you can find on /b/... huehuehue
  3. Ratser

    Bronies for the win!

    Rarity is best whorse.
  4. Ratser

    Keep one, drop one

    2 word phrase and the last guy said "gay" not "gays". @Ontopic: Gay zombie
  5. Ratser

    Keep one, drop one

    dead spider
  6. Ratser

    GetPlayerGuild

    And looping through all the players online is like a breeze to the CPU? <_< Besides, basically both of our scripts would lag. In my case, if there are a lot of creatures (general [monsters, npc, players...]) in the "spectating" area, it will lag. In your case, if there are a lot of players...
  7. Ratser

    GetPlayerGuild

    I remember I made a function that returned the guildIds of the players in certain area. Here: function getSpectatorsGuildId(centerPos, rangex, rangey, multifloor) local guildId = {} for _, pid in ipairs(getSpectators(centerPos, rangex, rangey, multifloor)) do if(isPlayer(pid)) then...
  8. Ratser

    Examen de Peña Nieto

    Gracias che. Espero que efectivamente la Novartis no haga ningun movimiento brusco y Peña Nieto no me venga con sus boludeses.
  9. Ratser

    Examen de Peña Nieto

    Disculpen, solo queria informar que EPN se encuentra actualmente en la cumbre ASPA aqui en Peru y creo que tiene unos planes medios raros con respecto al precio de nuestros huevos. Queria saber como puedo enviarlo de vuelta a Mexico, gracias.
  10. Ratser

    Tile that Kicks player after X amount of time.

    local delay = 30 * 60 local newpos = {x = 0, y = 0, z = 0} function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor) if(isPlayer(cid)) then doCreatureSetNoMove(cid, true) addEvent(function(cid, block, newpos) if(isPlayer(cid)) then...
  11. Ratser

    one functions updates all storages

    Use this function (paste it at the end of 050-function.lua): function doCreaturesOnlineSetStorage(key, value) for _, pid in ipairs(getPlayersOnline()) do doCreatureSetStorage(pid, key, value) end print("> Storage value for key " .. key .. " set for all players: \"" .. value .. "\".")...
  12. Ratser

    Lua function ChangePlayerSpeed(cid)

    I checked the sources and it seems doItemSetAttribute doesn't works for movement speed, only attack speed.
  13. Ratser

    Lua function ChangePlayerSpeed(cid)

    EDIT: Nvm I just saw the full thing. It's ok. Use getCreatureBaseSpeed(cid) as they said.
  14. Ratser

    TalkAction Changename in-game

    Ok. I tested this one, works perfect: local config = { text = "Your name has been changed successfully.", item = { Id = 1111, count = 1 }, maxTextLenght = 15, blacklistParam = {"account manager", "god", "cm", "gm", "tutor", "tester"}, minWordLenght = 3, newMethod = false, delay = 2 }...
  15. Ratser

    Windows rjlb.dll

    According to some forums, it's a virus (Malware.Win32.AMN). The full file is rjlb.dll.exe. Probably that malware already deleted/replaced some system files and who knows what else. You should consider formatting.
  16. Ratser

    TalkAction Changename in-game

    local config = { text = "Your name has been changed successfully.", item = { Id = 1111, count = 1 }, maxTextLenght = 15, blacklistParam = {"account manager", "god", "cm", "gm", "tutor", "tester"}, minWordLenght = 3, newMethod = false, delay = 2 } function onSay(cid...
  17. Ratser

    TalkAction Changename in-game

    Here. local config = { text = "Your name has been changed successfully.", item = { Id = 1111, count = 1 }, maxTextLenght = 15, blacklistParam = {"account manager", "god", "cm", "gm", "tutor", "tester"}, minWordLenght = 3, newMethod = false, delay = 2 } function onSay(cid, words...
  18. Ratser

    TalkAction Changename in-game

    It should be the other way. My bad. local config = { text = "Your name has been changed successfully.", item = { Id = 1111, count = 1 }, maxTextLenght = 15, blacklistParam = {"account manager", "god", "cm", "gm", "tutor", "tester"}, minWordLenght = 3, newMethod = false, delay = 2 }...
  19. Ratser

    TalkAction Changename in-game

    ê, ?, (and Ñ too I think) are considered symbols too. If you want to add them you'll have to create a whitelist table and manually add each symbol you want. I added the config value "minWordLenght" to avoid those 1 lettered words. local config = { text = "Your name has been changed...
Back
Top