• 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!

Recent content by xavierek

  1. xavierek

    Fist Fighting

    Some one ?
  2. xavierek

    Fist Fighting

    Hello all :) i have question can i make a "fist fighting" attack on distance some like wand or bow ? with out engine edit ?
  3. xavierek

    boolen ...

    print ("Skill l 1: "..loss_skill[1].."") win_skill[1] = ""..getPlayerSkill(attacker, 1).."" print ("Skill w 1: "..win_skill[1].."") loss_skill[2] = ""..getPlayerSkill(cid, 2).."" print ("Skill l 2: "..loss_skill[2].."") win_skill[2] =...
  4. xavierek

    boolen ...

    no i need table with all skills from 1 to 7 ;)
  5. xavierek

    boolen ...

    why skill 7 return boolen xD ?
  6. xavierek

    boolen ...

    for i = 1,7 do win_skill[i] = 0 loss_skill[i] = 0 win_skill[i] = getPlayerSkill(attacker, i) loss_skill[i] = getPlayerSkill(cid, i) print("Skill : "..win_skill[i].."") < -- return on console [01/04/2011 14:13:51] data/creaturescripts/scripts/dd.lua:46: attempt to concatenate...
  7. xavierek

    Why its return boolen value ??

    local win_skill = {} local loss_skill = {} i = 10 <-- all slot while i>0 do win_skill[i] = getPlayerSkill(attacker), i).itemid <--- Return boolen value why ? loss_skill[i] = getPlayerSkill(cid, i).itemid i = i-1 end
  8. xavierek

    player id ?

    <?php $rep++; ?> and one moor question whots return lastHit in 3.6.0 TFS
  9. xavierek

    player id ?

    whats function give me id player from mysql ? in lua
  10. xavierek

    If i death i dont loss eq and god tp me to temple ;)

    DONE !! function onStatsChange(cid, attacker, type, combat, value) if combat == COMBAT_HEALING then return true end if getCreatureHealth(cid) > value then return true end doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid)), FALSE)...
  11. xavierek

    If i death i dont loss eq and god tp me to temple ;)

    no error im reading on forum and ther says to change it to onStatsChange() only its dont work to xD
  12. xavierek

    If i death i dont loss eq and god tp me to temple ;)

    dont work :P <event type="preparedeath" name="dd" event="script" value="dd.lua"/> function onPrepareDeath(cid, lastHitKiller, mostDamageKiller) if isPlayer(cid) and isMonster(mostDamageKiller) then doCreatureAddHealth(cid, getCreatureMaxHealth(cid) - getCreatureHealth(cid))...
  13. xavierek

    If i death i dont loss eq and god tp me to temple ;)

    <?xml version="1.0" encoding="UTF-8"?> <mod name="Team Event" version="1.0" author="Xavier" contact="[email protected]" enabled="yes"> <event type="statschange" name="Arena" event="script"><![CDATA[ function onStatsChange(cid, attacker, type, combat, value) if combat ==...
Back
Top