• 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

    On a scale of 0 to 10

    9/10 I think games is a pretty cool guy, eh is funneh and doesn't afraid of anything. Rate Team Fortress 2.
  2. Ratser

    Song Game

    5/10 http://www.youtube.com/watch?v=0AHHOTDzWuM
  3. Ratser

    Song Game

    @Peroxide: 10/10 funny and schmexy. http://www.youtube.com/watch?v=9bZkp7q19f0
  4. Ratser

    Change Outfit On Ingame Account Manager!

    SQL is used to save the data of the server (players, items, etc.) in tables. I wouldn't follow those tutorials from above since they use XAMPP which is more like a server platform for testing. I would say you follow this instead...
  5. Ratser

    onLook - He is a player/tutor/gamemaster/god/senior tutor etc.

    Wait you wasn't talking about my C++ edit? EDIT: Damn ... PhoOwned comment confused me. I thought you were talking to me.
  6. Ratser

    onLook - He is a player/tutor/gamemaster/god/senior tutor etc.

    C'mon...I'm pretty sure the guy will notice that I didn't copy the whole function when he's about to edit it...and why should I anyways? This perfectly shows from the beginning of the function to the edited part, I don't see any need to copy the rest. And yeah it is possible. In fact, I think...
  7. Ratser

    onLook - He is a player/tutor/gamemaster/god/senior tutor etc.

    You can add the "Show group description instead of vocation" flag to each group in data/XML/groups.xml or change the getDescription function in player.cpp to this: std::string Player::getDescription(int32_t lookDistance) const { std::stringstream s; if(lookDistance == -1) { s <<...
  8. Ratser

    Vocation with different corpses (script that indentifies sex)

    Well, that's a way of fixing it although you just had to change the corpse id :p. Like this: if(sex % 2 == 0) corpse = 6081; // corpse for sorcerer (female) else corpse = 6080; // corpse for sorcerer (male) break;
  9. Ratser

    Vocation with different corpses (script that indentifies sex)

    Oh wow I never thought this was about you wanting to modify a function that already existed in TFS...I thought this was something new. Anyways then... Use this: uint16_t Player::getLookCorpse() const { uint16_t corpse; switch(getVocationId()) { case 1: case 7: if(sex % 2 ==...
  10. Ratser

    Vocation with different corpses (script that indentifies sex)

    Yeah, sorry forgot about that part. You have to declare it in player.h. Shorter: uint16_t Player::getLookCorpse() const { uint16_t corpse; switch(getVocationId()) { case 1: case 7: if(sex % 2 == 0) corpse = 6080; // corpse for sorcerer (male) else corpse = 6081; // corpse for...
  11. Ratser

    Vocation with different corpses (script that indentifies sex)

    Try this: uint16_t Player::getLookCorpse(uint16_t sex) const { /* Config */ uint16_t malehuman = 6080; // corpse for sorcerer uint16_t femalehuman = 6081; // corpse for sorcerer uint16_t dwarf = 6007; // corpse for druid uint16_t elf = 6003; // corpse for paladin uint16_t orc = 5966; //...
  12. Ratser

    Que lenguaje de programacion me recomiendan?

    COBOL o Fortran Con esos 2 vas a tener diversion asegurada por un bueeen rato :w00t: Y como postre: Assembly.
  13. Ratser

    -EXTENSION- (9.10) Remere Map Editor Ver. 2.2 (Walls, Grounds, Doodads Extensions!)

    It does work but the connection to the file is a bit slow. Mirror: Remeres_SlayingWorld_Additions.rar
  14. Ratser

    RME 2.2 finally released!

    Did he TFS 0.4/Half-Life 2: Episode 3 the version 3.0 or just changed it to 2.2? Because all the betas were from version 3.0. On the other side, very niiice update. Gotta love the new features. (Note: HL2:EP3-ing a project means delaying it indifinitively. Also applies for TFS 0.4.)
  15. Ratser

    Examen de Peña Nieto

    Candidata del PRI compró votos, huyó y mató a una persona GROVE STREET 4 LIFE
  16. Ratser

    Learning C/C++ - Tutorial

    Now I get it, I forgot to mention I start all my projects with CLR Console Application because most of the things I learned in college needed .Net Framework and well...I kinda got the habit of always starting my projects with the .NET compilation settings on by default. That's why IntelliSense...
  17. Ratser

    Learning C/C++ - Tutorial

    Ok. Especifically, IntelliSense's autocomplete function doesn't work in VS2010 with C++ projects and it even shows a message at the lower left corner saying "Visual C++ 2010 does not have IntelliSense for C++/CLI.". Apparently the support for it was reduced because of time and resource...
  18. Ratser

    Learning C/C++ - Tutorial

    I dunno how to use puts although I think I'm gonna have to learn it next month when I start doing Form Applications in college. Of course, I know both VS 2008 and 2010 have IntelliSense. What I mean is that compared to VS2008, VS2010 doesn't have a drop-down function list. The way...
  19. Ratser

    Learning C/C++ - Tutorial

    Yep. Visual Studio is the best one atm. @Zatjin: I'd say you should get VS 2010 or 2008. 2010 is better to check errors with more detail, but 2008 has a better and noob-friendly auto-complete (IntelliSense). Since there's no explanation on how to start it a console application project in VS...
Back
Top