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

    C++ OnLook with more than one color?

    Hello. So, I know that i can change the color of the "OnLook" by editing this function: bool Game::playerLookAt(uint32_t playerId, const Position& pos, uint16_t spriteId, int16_t stackpos) Here: player->sendTextMessage(MSG_INFO_DESCR, ss.str()); But how can I make it have two colors in the same...
  2. F

    Ideas for Guild Level System

    I really liked these ideas, thanks!
  3. F

    Ideas for Guild Level System

    Hello guys! I'm making a guild level system for my server and trying to think of some ideas. The focus of the server is RPG. For now, what I thought was: - You can "set" a percentage of your own experience (0% to 5%) that will be assigned to your guild whenever you get experience (and each...
  4. F

    Spell area is moving with the caster

    Bump - I still need help with this
  5. F

    Spell area is moving with the caster

    Exactly! Well.. it is more complicated than I can handle xD damn But thank you for the help anyway
  6. F

    Spell area is moving with the caster

    Still dosent work here.. You tried move while mid-cast? beucase that is when bugs. When standing still it works
  7. F

    Spell area is moving with the caster

    No, I want to stay, but as you can see, it is moving.. Edit: The tor1-tor3 tor1 = { {0, 0, 0, 0, 0}, {0, 1, 3, 1, 0} } tor2 = { {0, 1, 1, 1, 0}, {0, 1, 1, 1, 0}, {0, 0, 2, 0, 0} } tor3 = { {0, 1, 1, 1, 0}, {0, 1, 1, 1, 0}, {0, 0, 0, 0, 0}, {0, 0, 0, 0...
  8. F

    Spell area is moving with the caster

    Doesnt work, happens the same as mine script.. A SS to show:
  9. F

    Spell area is moving with the caster

    What do you mean with a single sqm combat? I added this: local thecombat = createCombatObject() setCombatParam(thecombat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ICE) function onTargetTile(cid, pos) doCombat(cid,thecombat,positionToVariant(pos)) addEvent(onCastSpell1, 1, parameters)...
  10. F

    Spell area is moving with the caster

    Hello! I made this spell, but I am needing to use mayNotMove, because without it, if I move to another direction, the last part of the spell goes also to another direction. I want the spell to keep on the initial point and direction without using mayNotMove, how can I do that? tfs 0.3.7 Here...
  11. F

    Changing wand/rod range

    It worked! Thank you!
  12. F

    Changing wand/rod range

    Is there a way to change the range using LUA? What I'm trying do to is, if the player have x storage, his wand have only 1 range. I've tried using doItemSetAttribute(itemEx.uid, "shootrange", 1) but nothing happens. tfs 0.3.7
  13. F

    Weapon that steals mana

    Hello, I wanted a script that makes a weapon takes mana from the target, and steals it for you. And if not possible, maybe just take the life and mana of the target, without stealing... Thanks! :P
Back
Top