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

    Digging carrots!

    Why don't you make the script yourself? Just take first scarab coin / scarab digging script, change item and monster, then associate it with ground ID. Simple, isn't it? In case only specific tiles should work this way, adda a check for actionID (and assign the action ID on your map of course)
  2. Z

    C++ tfs 1.3 item description

    Okay, I see. Clearly misunderstood then. Well, if that's the case then I don't think you can easily achieve that, if you track down Item::getArmor() method, you will see it returns either attribute or ItemType::armor value, which is 0 by default. So whether you specify armor with value 0 in...
  3. Z

    C++ tfs 1.3 item description

    else if (it.armor != 0 || (item && item->getArmor() != 0)) { bool begin = true; int32_t armor = (item ? item->getArmor() : it.armor); if (armor != 0) { s << " (Arm:" << armor; begin = false; } This will only work for armor (so any item...
  4. Z

    Wild Growth - exevo grav vita. Script don't working OTHire 0.0.3 Client 7.72.

    My wild guess, you need to replace the ID (last parameter, here 1499) with another ID that would match ID of wild growth of your server. setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1499) But it's a wild guess, do you receive any kind of errors in console? Can't think of anything other than...
  5. Z

    VPS Real map

    If you have a Windows BOX license then you can probably get a VPS with no system at all, but this depends on company you want the VPS from. Some (I think most) will let you only choose from pre-defined systems they have images of. If you don't own a Windows BOX license, you can probably talk to...
  6. Z

    Lua Cast System Viewers

    Still, we need source code for your server (or relevant parts of it) to tell anything. Without it I can only suggest this: make your server update the database :)
  7. Z

    C++ Mouse Mid Button

    Well, I will extend a bit on the post above, but I will not provide the implementation for similar reasons (I didn't work with OTC a lot and I don't feel like going through it now). You'll need to send from OTC a network message (both TFS and OTC implements communication based on network...
  8. Z

    Lua Countdown timer tfs 0.4

    Lua for loop This is what you're looking for.
  9. Z

    Adori blank, yes or not?

    Assuming you don't mess with rune system then I would share your opinion.
  10. Z

    "Arm" (Armor) formula in Sources TFS 0.4.0

    you should look for Creature::blockHit method in creature.cpp, also check if your Player class does not override it. If you want your changes to only apply to players, then you will have to override this method in Player class.
  11. Z

    Graphic Designer Spriting service

    I really like the outfit, but I think it lacks a bit of shading in few places and a stronger outline. I really admire the fact you managed to get the right perspective, I hardly see people on Otland that can deal with it. The dragon dagger could look better if with smooth white - red...
  12. Z

    CreatureEvent onTarget Interact with Npc

    Then use git and your problem of re-creating changes on TFS update is gone?
  13. Z

    Server crash bt log

    Alright, so it's just the original code then. Well: 1. Do you know what is causing the crash (as in, what is done by you that makes it crash? My guess is "look at" action on player, but please confirm). 2. Any lua scripts that handles onLook event? If so, post it/them here. 3. Can you compile in...
  14. Z

    Lua Guild kills

    because you enclosed it in quote marks, meaning you print string literal "gid", not the value of variable gid.
  15. Z

    Lua Guild kills

    What TFS is that? Shouldn't you be using getGlobalStorageValue in line 22? If this is the script in KillTheSameIP.lua, since there's no line 22 in script you posted.
  16. Z

    Lua Guild kills

    print your gid, it is most probably false, because you call getPlayerGuildId without cid (there is no cid when config is populated). You need to get guild id inside your onKill function.
  17. Z

    Windows The map was saved with a different items.otb version, an upgraded items.otb is required.

    you need to use items.otb you've used in your editor (to create/modify/save the map) in tfs.
  18. Z

    Server crash bt log

    Post your Player::getDescription function from player.cpp to begin with.
  19. Z

    7.4 Cipsoft Legacy Server

    I'm pretty sure that's not how it worked in 7.4!
  20. Z

    [Gesior] Problem with paygol script

    Well, there is no direct communication between these scripts and there should not be. The first one redirects user to paygol page to deal with the payment, then paygol system makes POST request to the other page (paygol.php) with information required to verify the payment has been made (in...
Back
Top