• 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!

Recent content by Renusek

  1. Renusek

    [9.46] The Forgotten Server v0.3.7-preview (Crying Damson)

    Thanks for this new awesome version, but some things really needs to be fixed asap. Btw I've got problems with compilating it with msvc10, first was that it couldn't find lua51.lib so I renamed lua5.1.lib to lua51.lib (I know, I'm pro xD), but I don't know how fix the second error: Error 2 error...
  2. Renusek

    Lua Mounts

    you have to enable this option in config.lua (0.3.7)
  3. Renusek

    OpenTibia SharpSpriteCutter - a tool for fast cutting spritesheets!

    I'll post some screenshots. After run After load a spritesheet Double click on preview
  4. Renusek

    OpenTibia OT Flags Generator v1.0 [classic & custom flags]

    Nice tool ;) but I think you should disable maximize box, it would be better ;p.
  5. Renusek

    OpenTibia SharpSpriteCutter - a tool for fast cutting spritesheets!

    Hello, I've made a lil' app which may help some of you :) Easy to use, just start it, click "Load" button then choose spritesheet. If you are not sure how it will look after cut then double click on image preview. If everything is as you want click "Cut them!" and after cutting there will be...
  6. Renusek

    9.31 bot

    Because botters are noobs. Search for newest tibiaauto, blackdproxy or just get 3 day trial of neobot (undetectable).
  7. Renusek

    Feature Simple anti-push system

    Can't be for (n = 0; n < items.Length(); n++) ? Good code, but as druidbacu said, this system existed before ;p.
  8. Renusek

    CreatureEvent Info Chat!

    function onAdvance(cid, skill, oldLevel, newLevel) for _, pid in ipairs(getPlayersOnline()) do if skill == SKILL__LEVEL and newLevel % 50 == 0 then doPlayerSendChannelMessage(pid, "Advance", "Player " .. getCreatureName(cid) .. " advanced to " .. getPlayerLevel(cid) .. " level!"...
  9. Renusek

    Kill people get 1 cc help

    function onKill(cid,target) if isPlayer(target) then doPlayerAddItem(cid, 2160, 1) end return true end
  10. Renusek

    Playstation 3 vs. Xbox 360

    ps3! and xbox pad is weird
  11. Renusek

    [LIB] Achievements Lib - 075-achievement.lua

    quest storage value, storage key is 20000 + achievement id
  12. Renusek

    Windows Tibia client crashes when i "mark/attack" something [WITH VIDEO]

    Did you added/edited some onAttack/onTarget scripts?
  13. Renusek

    CreatureEvent Ranking System

    Lulz, there is a function (0.3.6pl1 and newer): doPlayerSendMailByName(name, item[, town[, actor]]) And item can be a container with items ;p Though good idea. And if someone will put 1gp on the mailbox - it'll not affect sending a parcel.
  14. Renusek

    Lua Working /ban - command for tfs 0.3.6p1?

    use this function: doAddPlayerBanishment(name/guid[, type[, length[, reason[, action[, comment[, admin[, statement]]]]]]])
  15. Renusek

    TalkAction SetLvl Command! [Pro Elo HIT!]

    Usage also: /setlvl nic~, lvl And your tabbing is fucking ugly. function onSay(cid, words, param, channel) if(param == '') then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.") return true end local t = string.explode(param, ",") t[2] =...
Back
Top