• 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

    Learning C/C++ - Tutorial

    Just a tip. Instead of doing... if (drinks >= 6) { printf("-THERE'S NO SUCH OPTION"); } else { ...add "printf("-THERE'S NO SUCH OPTION");" as a "default" action at the end of the switch. It's basically the same thing but saves you some lines. e.g...
  2. Ratser

    Learning C/C++ - Tutorial

    Just some corrections... On the switch part: If it's the last statement then you don't have to "break" the operation since the switch will stop after it. e.g. int main() { int i = 5; switch (i) { case 1: printf("i is 1."); break; case 2: printf("i is 2."); break; default...
  3. Ratser

    TalkAction How To Ban ppl With Command ..

    Neither yours, shut up. http://otland.net/f81/ban-nick-time-comment-forgotten-server-0-3-4-a-36230/
  4. Ratser

    Which one would you vote for?

    Poni. Because poni should poni poni.
  5. Ratser

    [DEFUNCT] Otland Desk - Otland.net desktop aplication

    IMO it would be better as a Gadget for the Windows Sidebar or as a Windows 8 App.
  6. Ratser

    Bogart

    ...si tu quieres el cielo alcanzar y las estrellas tocar DIIIIGIIIIIMOOOOOON!
  7. Ratser

    Katawa Shoujo - contains adult content 18+!

    That's what happened when I first watched MLP:FiM too. At first I was like: The hell is wrong with the internet... Then I was like: Whoa. This is actually good and nicely done! Although it didn't change my life (I think it's because I'm happy just as I am now (?)), for some people it did and I...
  8. Ratser

    Bogart

    Por el titulo parece como si el thread fuera de un poema o cancion hacia Bogart ...que manera mas profunda empezar un tema solo escribiendo "Bogart". http://www.youtube.com/watch?v=G2zDW9me-IY
  9. Ratser

    ask me

    As soon as /mlp/ was created it got cancer too. Vid related (I know that's /co/ but it's really the same thing these days): Pony Thread Simulator v1.0 - YouTube Personally, I don't like to stay much with the fanbase because most of them are really (*cough*...cloppers) "weird" (just check the...
  10. Ratser

    Katawa Shoujo - contains adult content 18+!

    >this http://www.youtube.com/watch?v=aSZ-NuQxisA
  11. Ratser

    Bogart es puto, muerte a los pandas - Movimiento Internacional Anti Pandas

    1. Clic derecho 2. Codigo fuente 3. Link real: Movimiento Internacional Anti Pandas (wokiesunidiotaporamaraalejandra. com/panda) 4. Derivado de: wokiesunidiotaporamaraalejandra.com (wokiesunidiotaporamaraalejandra. com 5. ????? 6. PRO--BLEM?
  12. Ratser

    Fix/Patch Level instead of world name on character login (Help)

    iologindata.cpp: if(GameServer* server = GameServers::getInstance()->getServerById(result->getDataInt("world_id"))) account.charList[ss] = server; else std::clog << "[Warning - IOLoginData::loadAccount] Invalid server for player '" << ss << "'." << std::endl; Found it. ...What do now...
  13. Ratser

    Need additem if not found itemid

    onThink(cid, interval) is a creaturescript function too. Main difference: [creaturescript] onThink(cid, interval): Is always executed every 500ms in every online player. [globalevent] onThink(): Execute interval and array of creatures can be configured.
  14. Ratser

    Lua Use addEvent properly with loops

    Damn...I wanted this to remain forgotten until I released my "jail script with countdown resume in case the player logs out with no loops whatsoever". Oh well...for scripters out there: this addEvent trick is really, REALLY useful. Just a preview of my code: function doCreatureSetCountdown(uid...
  15. Ratser

    [League of Legends] General Discussion

    Damn...I was going for my second but I got invited to the Dota 2 Beta and I just had to test it (The interface is awful btw, and the sounds...jeezus...it's like i'm playing a Half-Life 1 mod)
  16. Ratser

    mappers dafUQ?

    I can confirm that most players think like that too. I made an experiment with 15 players for about 2-3 years. First I put an Evolutions map (Tibia 8.10). The mapping was horrible and there were some bugs. ->Result: They loved it. ->Reason: Fun and easy to train and compete with other players...
  17. Ratser

    addCreatureMaxHealth function

    This is logic too :p In simple words... Player: ->Has equipped any of those HP adding items: "player HP" + 30% of the "player's HP" ->->Example: ->->->Player current HP is 3000: he equipped the items: HP is now: 3000 + 30% of 3000 ->Has equipped any of those HP adding items PLUS triggered this...
  18. Ratser

    addCreatureMaxHealth function

    function onUse(cid, item, fromPosition, itemEx, toPosition) if(getCreatureStorage(cid, STORAGE) < 1) then setCreatureMaxHealth(cid, getCreatureMaxHealth(cid) + 1000) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Your Health Is Now: " .. getCreatureMaxHealth(cid) .. ".")...
  19. Ratser

    Suggestion Xbox Live Gamertag

  20. Ratser

    Suggestion Xbox Live Gamertag

    There! I found a Raptr widget that displays your SteamID, Xbox Live Gamertag, PSN username and who knows what else in the signature bar. What else would you want!?
Back
Top