• 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. Joe Rod

    Programmer Need Programmers to OTCLIENT

    be careful with this guy
  2. Joe Rod

    Trouble with spell exhaustion

    do you have a custom spells.xml file? I mean, is not the original from OTX?
  3. Joe Rod

    Feature Auto recharge ammo

    uint32_t count = item->getItemCount(); if (count - 1 == 0) { uint32_t playerCount = player->getItemTypeCount(item->getID(), -1); playerCount--; if (playerCount > 0) { int32_t removeCount = std::max<int32_t>(1, std::min<int32_t>(100, playerCount)); bool test...
  4. Joe Rod

    [PAID JOB] Step up server in version 10 and 11.

    I did the work via TV first (ye, that stupid, and twice is stupider) and they blocked me no more spam here xd
  5. Joe Rod

    [PAID JOB] Step up server in version 10 and 11.

    is funny because is true LOL, i have been scammed by two br's recently D:
  6. Joe Rod

    Looking for testers

    Raging bull used Rage!
  7. Joe Rod

    CreatureEvent onTarget Interact with Npc

    i was waiting for this, but anyone reported xD remove this: if (!target->getNpc()) and after if (player == target) { return RETURNVALUE_YOUMAYNOTATTACKTHISPLAYER; } paste this: if (target->getNpc()) { return Combat::canDoCombat(player, target); } i'll try to contact a moderator to...
  8. Joe Rod

    Oldschool Era 7.4/7.7 Merged Highrate (Printer) - Need your suggestions

    What about catalysium? I was waiting for it :( However, good luck with this project, i'll be playing it for sure :)
  9. Joe Rod

    Feature Game.getMounts(), Game.getOutfits(sex)

    what do you get? You get a table with some fields on Mounts id clientId (for lookType) name on Outfits name lookType
  10. Joe Rod

    Feature Game.getMounts(), Game.getOutfits(sex)

    Hi, with this functions you will get a list of all available mounts/outfits that you have added to xml file Tested on OTX3, this works on TFS 1.X luascript.h after this: static int luaGameGetHouses(lua_State* L); paste this: static int luaGameGetMounts(lua_State* L); static int...
  11. Joe Rod

    +XP bonus for Premmy's

    it would be nice if you could say which distro are you using...
  12. Joe Rod

    Unline

  13. Joe Rod

    [CANADA] Niverus - Custom Evolution | 10.9+ | Low Rates | F2P & 4FUN OTS

    hater comments should be removed imho
  14. Joe Rod

    TalkAction Clear console

    for Linux os.execute("clear")
  15. Joe Rod

    [TFS 1.x] Player:addItemFromUsedItemContainer

    i think it would be better this name "Player:addItemOnUsedItemContainer" but i can't edit post, so...
  16. Joe Rod

    Lua Creating items in specific backpack TFS 1.2

    [TFS 1.x] Player:addItemFromUsedItemContainer
  17. Joe Rod

    [TFS 1.x] Player:addItemFromUsedItemContainer

    based on this request This would be good in case you have to do something like obsidian knife where you want to add a new item to the player depending where the knife is located, so if the knife is on container it would be added to that container, else it will be given to the player to another...
  18. Joe Rod

    Lua Creating items in specific backpack TFS 1.2

    if (fromPosition.x == CONTAINER_POSITION) then --check if is from container if (not item:getParent():addItem(itemId, amount)) then --check if could be added to that container where the item is located player:addItem(itemId, amount) --add to player if couldn't be added to that container...
  19. Joe Rod

    FoxOT Discussion Thread - Testing Phase

    this made me cry :( i'll take a look xD
  20. Joe Rod

    CreatureEvent onLook Interact with NPC

    which is the right board for events?
Back
Top