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

    Lua Mass Healing in Percent

    Devland 0.97b, I don't have errors in console. I want create rune without using crosshair on player. I fixed, thanks
  2. whiteblXK

    Lua Mass Healing in Percent

    When I clicking PPM on rune nothing is happens :/ Maybe in spells.xml is error: <rune name="Mass Healing" id="2272" aggressive="0" mana="1000" maglv="10" cooldown="1000" enabled="1" allowfaruse="1" script="buffs/SUPPORT/Mass Healing.lua"></rune>
  3. whiteblXK

    Lua Mass Healing in Percent

    No working :/ I have rune without useable(in *.dat ant items.otb). I want only click PPM on rune and heal all player who are in area
  4. whiteblXK

    Lua Mass Healing in Percent

    Thanks Limos :) I put your function to my script but this no working :/ local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0) arr1 = { {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 1, 1...
  5. whiteblXK

    Lua Mass Healing in Percent

    Hmm, how to heal all PLAYER(no monster) in circle 3x3?
  6. whiteblXK

    Lua Mass Healing in Percent

    Hello, how to create spell will heal 40 percent HP players who are in circle3x3? I tried change this spell but I can't :( local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)...
  7. whiteblXK

    Compiling Limit Level/experience in OTS

    I don't have stages.xml, in CreatureScript I have only login.lua and logout.lua. Is nothink in these file.
  8. whiteblXK

    Compiling Limit Level/experience in OTS

    Hmm, I still don't know how to fix it :( Server is SQL, limit level is 11k and when I die level goes to 630+/-
  9. whiteblXK

    Compiling Limit Level/experience in OTS

    Hello, I found stupid limit in my serverm, as a topic say, is the limit of exp/level and I don't know how to change it :( I use quite old server, Devland 0.97b. How to change this limit?
  10. whiteblXK

    Compiling Custom version of client and sever

    Hello, how can I change version in TFS 0.3.7 and latest OTClient from 8.6 to 0.1 or something like this?
  11. whiteblXK

    Compiling Error with getPosition() in C++

    Thanks for answer, works perfectly :)
  12. whiteblXK

    Compiling Error with getPosition() in C++

    Hi, In void Player::sendCritical() const I add one line: g_game.addMagicEffect(getPosition(), MAGIC_EFFECT_CRITICAL); Which have to show magic effect 64x64, when I change getPosition() to getPosition().x+1 I have this errors: player.cpp:5182: error: no matching function for call to...
  13. whiteblXK

    Compiling How to send "sendExtendedOpcode" to target.

    Thanks for helping me. I have errors: r3884\src\weapons.cpp:636: error: invalid conversion from 'const Creature*' to 'Creature*' r3884\src\weapons.cpp:636: error: initializing argument 1 of 'void Player::sendCritical(Creature*) const' r3884\src\weapons.cpp: In member function 'virtual int32_t...
  14. whiteblXK

    Compiling How to send "sendExtendedOpcode" to target.

    Function sendCritical is used in weapons.cpp, how to add information about target in this function?
Back
Top