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

    Solved TFS What are the guild commands?

    SOLVED: I wrote a spell that adds a storage value to players to indicate whether they're invited or not. I created the a global variable to set the storage ID in it's own special bracket to numbers of the form 9913###: GUILD_BASELINE = 9913000 Then wrote the following code to invite...
  2. Drakkhan

    How do I capture the parameters typed after spell words?

    SOLVED: Extensive searching through code produced that var has different types that can be accessed. Consider the following bit of useless code for example: local type = var.type --in the above line, type will be an integer --that references what "type" of parameter --was put into 'var'...
  3. Drakkhan

    How do I capture the parameters typed after spell words?

    Consider the spell: Heal Friend --> exura sio "John" The string "John" is mysteriously transferred into the (table?) variable "var" in the spell's lau script: function onCastSpell(cid, var) How do I use var as a string variable? I want to be able to use the string "John" in my code within...
  4. Drakkhan

    Is it possible to set player names not to display?

    Does anyone think this is possible?: I'm looking to set up a talkaction that allows the player to declare whether others can see their name or not. Example: Player "John" walks up to player "Jane", neither of their names can be seen by the other, but each can see their own name. John says...
  5. Drakkhan

    Solved TFS What are the guild commands?

    Nope, on TFS 0.2.14 that command doesn't work... any ideas?
  6. Drakkhan

    Solved TFS What are the guild commands?

    Simple question, Where does one find a complete list of commands available to a guild leader? Specifically: How does a guild leader invite other characters to the guild?
  7. Drakkhan

    Lua I am trying to create a worm digging script

    @bladeatblackd the doPlayerAddItem(cid,3976,1) line should stack items on top of each other. It adds a worm, and places it where ever makes most sense. If it is not stacking the worms, it could be that your server does not have worms as stackable (if you can manually stack worms, this is not the...
  8. Drakkhan

    Lua I am trying to create a worm digging script

    Unfortunately I know of no comprehensive .lua guide. I can .lua program because I am fluent in many programming languages and draw from a general programming understanding to speak this mutt language. I think the best thing you can do is learn C or C++ fully... (or other languages that are...
  9. Drakkhan

    Lua I am trying to create a worm digging script

    skimming your code I skipped over the first if statement because your comments are confusing... if you're just trying to say "if the player has more than 15 worms, stop the player because the player is greedy".. that should do the trick. BUT! consider formatting the if statement so it is more...
  10. Drakkhan

    TalkAction In-game !skills playername

    I like it! Thanks for posting.
  11. Drakkhan

    Sprites becoming see-through?

    @Summ I took a few moments to analyze the problem. When I open the .spr/.dat files that my client is using, the sprite of the sabre appears to have white pixels where the see-through portion is. It hasn't been changed in any way from Tibia original. Other tools such as otitemeditor see the same...
  12. Drakkhan

    Sprites becoming see-through?

    Hmm... I believe I have a pseudo working set of tools now. If I (or perhaps Summ) can solve this problem and one other minor one.. I will write a tutorial on my current means of modifying everything 9.61 :).
  13. Drakkhan

    Sprites becoming see-through?

    @Summ I'll get back to you next weekend when I have less work to do. What I know now is that my custom sprites are fine. I have yet to decompile my .spr file and check if those pixels in the original sprites that are missing have been turned to pink, though. @Shadowsong any chance you could...
  14. Drakkhan

    Sprites becoming see-through?

    Is there some location that states what color pixels shall be invisible? Is there a limit to the number of colors total that all sprites can draw from? like a palette of 256 colors to draw with and any other colors become invisible? I have not edited any of these items or sprites shown here...
  15. Drakkhan

    Sprites becoming see-through?

    There is a chunk of see through sabre, a hole in the plate armor, and nearly see through diamonds. It is as if a certain variety of white has become invisible.
  16. Drakkhan

    Sprites becoming see-through?

    Has anyone else encountered this? small chunks of random sprites in my server have become see-through... I HAVE edited the .spr, .dat, and .otb files.. but NOT these sprites/items that are invisible :/.. I'm using Storms Editor, Tibia Editor 9.81, and otitemeditor. Any ideas on why this is...
  17. Drakkhan

    OTB Editor not working properly

    No problem!
  18. Drakkhan

    OTB Editor not working properly

    yes.. if you modify the .dat/.spr file, you have to at LEAST distribute those and a copy of regular 8.60
  19. Drakkhan

    OTB Editor not working properly

    hmm... what is the Sprite #? and what are the corresponding item's CID/SID? If you don't know all three numbers, just give me the ones you do. If you have an up and running server and a gamemaster character, the easiest number to get for me is the SID by looking at the item as the game master...
  20. Drakkhan

    OTB Editor not working properly

    ok... so you're editing an existing mana rune to have different properties than it used to? How will the new rune be different than the old?
Back
Top