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

    [Sweden] [8.42] Rizzoria - 24/7 - Just Rested! (Custom Map)

    I posted this in June, 2 months ago, no idea why that guy bumped it.
  2. Rizz

    os.time()

    It's the so called "Unix Time", which is seconds after 1st Jan 1970, 01:00:00. Linux is a Unix variant, so yes they use it also.
  3. Rizz

    Complaint Ban realmaps

    Signed. They are illegal also, while custom maps are not. ("Real Tibia Maps" has been copied from copyrighted material, "Custom Maps" have not... And don't bring in the "using tibias sprs/client" argument, since the custom map owners doesn't force you to use it, you can just as well use YATC...)
  4. Rizz

    CreatureEvent Kick none-vip/premium players out of vip/prem areas when their vip/prem runs out!

    Simply because I don't have a rook on my server ;) Well... Unless you got a viparea in your rook + add it to vipcords, they cannot be teleported. This script will onLogin check if: if player does not have vip -> (if yes) is he in a vip area (if yes) teleport to homeCords (if no) do nothing...
  5. Rizz

    CreatureEvent Kick none-vip/premium players out of vip/prem areas when their vip/prem runs out!

    Just a little side note, I don't use your system, I use my own personal "system", but it's very similar to yours, but bit more effective.
  6. Rizz

    7 thrones and 1 doors!

    better to do like this: if getPlayerStorageData(cid, idfordoor1) ~= -1 and getPlayerStorageData(cid, idfordoor2) ~= -1 and getPlayerStorageData(cid, idfordoor3) ~= -1 and getPlayerStorageData(cid, idfordoor4) ~= -1 and getPlayerStorageData(cid, idfordoor5) ~= -1 and getPlayerStorageData(cid...
  7. Rizz

    Ctrl + V

    Stupid wxpropgrid :(
  8. Rizz

    Ctrl + V

    "C:\SourceCode\Libraries\wxWidgets2.8\include";"C:\SourceCode\Libraries\wxWidgets2.8\contrib\include\wx\propgrid";"C:\SourceCode\Libraries\wxWidgets2.8\include\msvc";"C:\Documents and Settings\Rikard-ADM\Skrivbord\CDMSSrc_055_Deluxe\CDMS\Rainman\include";"C:\Documents and...
  9. Rizz

    CreatureEvent Kick none-vip/premium players out of vip/prem areas when their vip/prem runs out!

    local vipZones = { {fromPos = {x=1800, y=150, z=0}, toPos = {x=2050, y=300, z=15}}, {fromPos = {x=1000, y=1250, z=0}, toPos = {x=1500, y=1600, z=15}} } local vipTowns = {14,15} local homeTown = 1 local homeCords = {x = 1060, y = 994, z = 7} function onLogin(cid) if...
  10. Rizz

    fix this bug (pillow puzzle)

    Right, read wrong, lol, I wounder how the AIDs ended up in there...
  11. Rizz

    fix this bug (pillow puzzle)

    Not true. The system uses ActionIDs not UniqueIDs. I cannot help you without any error message.
  12. Rizz

    Long Story Function For NPC Channel

    I don't have pl2, but pl2 will contain a necessary fix. Here's the fix (0.3.5 and 0.3.5pl1): luascript.cpp if(params > 3) lua_pushboolean(L, g_game.internalCreatureSay(creature, type, text, ghost, &list, &pos)); else lua_pushboolean(L, g_game.internalCreatureSay(creature, type, text...
  13. Rizz

    Action Outfit Quests

    <?xml version="1.0" encoding="UTF-8"?> <mod name="Outfit Quest" version="1.1" author="Rizz & chris77" contact="otland.net" enabled="yes"> <description> This mod adds the ability to gain outfits as chest rewards. </description> <config name="outfits"><![CDATA[ outfits = { [12001] =...
  14. Rizz

    Long Story Function For NPC Channel

    0.3.5pl2 will contain the necessary fix.
  15. Rizz

    [8.5] The Forgotten Server 0.3.5pl1 (Crying Damson)

    It's an internal TODO list, and it only says what they are planning to do in 0.4...
  16. Rizz

    [8.5] The Forgotten Server 0.3.5pl1 (Crying Damson)

    I see a bug I reported is not in the fix... Well, I'll link it here, here's a fix for it in the thread... http://otland.net/project.php?issueid=1121#note6729
  17. Rizz

    Last One To Reply Wins

    nah, I'm <locks the thread>
  18. Rizz

    Adding premium points if player is offline command.

    function onSay(cid, words, param) local t = string.explode(param, ",") if t[1] ~= nil and t[2] ~= nil then local result = db.getResult("SELECT `account_id` FROM `players` WHERE `name` = '"..t[1].."';") db.executeQuery("UPDATE `accounts` SET...
  19. Rizz

    Adding premium points if player is offline command.

    function onSay(cid, words, param) local t = string.explode(param, ",") if t[1] ~= nil and t[2] ~= nil then local result = db.getResult("SELECT `account_id` FROM `players` WHERE `name` = '"..t[1].."';") db.executeQuery("UPDATE `accounts` SET...
  20. Rizz

    Long Story Function For NPC Channel

    Only works in 0.3.5pl2 or higher. function doCreatureSayWithDelay(cid,text,type,delay,e,pcid) if delay<=0 then doCreatureSay(cid,text,type, false,pcid) else local func=function(pars) doCreatureSay(pars.cid,pars.text,pars.type, false,pars.pcid) pars.e.done=TRUE end e.done=FALSE...
Back
Top