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

    TFS 1.X+ Magic level damage increase.

    I really need to increase the damage of the rune, by the player's ml, but the way I did it little changes, if the person has 120 ml and when using items goes to 145 ml, the increase is very insignificant. local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)...
  2. Piifafa

    Lua Help with attribute item.

    I recently created an item, which gives attributes to some weapons, but it doesn't work well, you can't see the attribute limit, other than that the person can make unimaginably strong weapons. So I added a breakage system, it's cool but people don't like the way it works, so instead of breakage...
  3. Piifafa

    C++ Activate new outfits

    I have a question, I want to activate new clothes, but I don't know how to make it work, I use a nostauris style version on the server, I just want to add the columns which would be from number 161 to 190. bool Player::canWear(uint32_t lookType) const { if (group->access) { return...
  4. Piifafa

    TFS 1.X+ Use item and gain exp instantly.

    Hello everyone, thanks for trying to help me! How could I make a script, for use where the person uses it and gains 150 thousand experience instantly? Without having the stage effects that exist in otserver? I made a script that adds more capacity for players, but it wasn't as good for the...
  5. Piifafa

    C++ Customer input.

    I see that many are unable to correctly use the part that shows about discord and online player in the customer entry, I would like to share my solution, I don't know if there is anything better than that. But if so, leave it here so everyone can use it. How did I get it to work? status.php...
  6. Piifafa

    TFS 1.X+ The use of the Spell consumes more mana according to the player's level.

    I would like to know how I can increase the mana consumption of certain spells according to the player's level. I can't think of any easy alternative for this. I would like it to be like the example, after level 200, the use of the magic increases its mana cost according to a rule or something...
  7. Piifafa

    TFS 1.X+ Help, protocolstatus.cpp

    I really need to organize my server for correct player counts, because I'm an honest man, I don't admit passing wrong counts to lists, However, it counts all mc and I know it shouldn't, I've already limited the number of mc with scripts. /* * YurOTS, a free game server emulator * Official...
  8. Piifafa

    OTClient status.php (Player Online)

    Hey friends, I managed to fix my discord, but the player number hasn't worked even though I put the website there, how should I fix this problem? status.php page: <?php $online_otservlist = 0; try { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://otservlist.org/")...
  9. Piifafa

    Seeking Help for Creating a Mini-Map for My Server

    Hello, fellow community members, I hope this message finds you all well. I am reaching out to seek some guidance on how to create a visually appealing mini-map for my server. I've been struggling to find suitable tools or resources to assist me in this endeavor. While I've attempted to create...
  10. Piifafa

    A small doubt. TFS 1.2

    I have a little chest on my server that will give an item every 16 hours, but I would like there to also be an item that is always fixed, I managed to do that but I would like the message to be shown to the player about what he received. -- Dungeon dos soldir infernal e etc, tematica de fogo...
  11. Piifafa

    Dungeon System [1.2 TFS]

    Hello friends, I'm trying to create a small Dungeon system on my server that is simple and functional. It uses almost an aside from my otserver's The Annihilator Quest script. In a few words I will show you how it works. A person uses the lever and can pull it with up to 4 friends or alone...
  12. Piifafa

    Help to create a sales script. TFS 1.2

    Guys, I just managed to make a script that sells items, using x rune on such item. It works perfectly, however because you are using item.srv when you click on the rune and the item adds all the charges. -- rest of config (item prices) is under function, paste there your items list from npc...
  13. Piifafa

    Raid on tfs 1.2 system

    Hello everyone, I have my raids working, but I would like them to be somehow set for specific days to happen during the week. In my case my raids happen randomly but almost all the time. I'll show you how I ended up doing it. <raid name="yurotscaverats" repeat="true" margin="60"...
  14. Piifafa

    Doubt with item and chance to hit.

    Hello everyone different from others ot my server uses a file extension called items.srv I wonder if I can increase the chance of hitting a bolt by doing this? I write this now because I am at work. TypeID = 3450 Name = "a power bolt" Flags = {Cumulative,Take,Ammo}...
  15. Piifafa

    TFS 1.X+ Use of item with time.

    I would like my item not to be usable again until it expires. <action itemid="5498" script="expboostsmall.lua"/> function onUse(player, item, fromPosition, itemEx, toPosition) local storageValue = player:getStorageValue(81100) if storageValue <= os.time() then local...
  16. Piifafa

    TFS 1.X+ Double exp / Sabrehaven.com based on Nostalrius 7.7

    Please someone who is very experienced could help me create an item, ring or something that would give double experience or a percentage more on that basis? I tried several ways but nothing works.
  17. Piifafa

    Lua Reset System TFS 1.2

    I would like to know how I can use this system on my server, as I use a Nostalrius database, and it's quite different from the typical OT servers. Even the NPCs are different, but I know it's TFS 1.2. I would like to have an NPC that can perform a player reset. local config = { backToLevel...
  18. Piifafa

    TFS 1.X+ Paralyse Rune

    hello friends, I would like to know why when using the paralysis rune, my players do not get a skull? Because in fact they don't stay in battle mode, I tried 2 different scripts but I don't know what to do. local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED)...
  19. Piifafa

    TFS 1.X+ Increases weapon attack.

    the idea was to use some gems and the weapon's attacks have a chance to increase or break it, but it's not working! Error: Lua Script Error: [Action Interface] data/actions/scripts/gem.lua:onUse data/actions/scripts/gem.lua:37: attempt to call method 'getCustomAttribute' (a nil value) stack...
  20. Piifafa

    OTClient Bug or Error?

    I can't understand why my new items can't be traded, or simply open some options when they are done in a bag! I share the photo with friends. notice that it cannot be traded, use items.srv
Back
Top