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

  1. D

    [8.7] The Forgotten Server v0.2.10 (Mystic Spirit)

    I have a version for Centos 5 working and without bugs... it tooke me 1 afternoon to get al libraries working but i managed with it... the hardest part was install boost 1.45 and maybe lua functions but its possible, i wont give you a link with the server because it wont work unless you have...
  2. D

    Spell Error..

    Well i've found the problem but i'm not sure of how to solve it. In 3.5 was Outfit_t outfit; outfit.lookFeet = popNumber(L); outfit.lookLegs = popNumber(L); outfit.lookBody = popNumber(L); outfit.lookHead = popNumber(L); outfit.lookType = popNumber(L); outfit.lookTypeEx = popNumber(L)...
  3. D

    If player summon die.

    function isSummon(cid) return (isMonster(cid)) and (getCreatureMaster(cid)~=cid) end you can use this function inside function onDeath(cid, corpse, lastHitKiller, mostDamageKiller) local money = 1000 if isSummon(cid) then...
  4. D

    TalkAction Wow warlock summoning

    Ups xDDD i think that the time between its a little bad xDD well... beter use for gm so players can go or not at their own. It will be nice to make this function to call every player on server xDD basicly for events and gm will be the only who can use this.
  5. D

    Get weapons attack power

    You have some options getItemAttack(uid) getItemExtraAttack(uid) getItemDefense(uid) getItemExtraDefense(uid) getItemArmor(uid) getItemAttackSpeed(uid) getItemHitChance(uid) you could do local weap1 = getPlayerSlotItem(cid, 5) local weap2 = getPlayerSlotItem(cid, 6) local atack = "" if...
  6. D

    TalkAction Wow warlock summoning

    Sry the problem was os.time is an string and os.time() a number so that was the error ^^ now solved :P
  7. D

    TalkAction Wow warlock summoning

    Pls try the new code sry for not testing it ^^U if it dont work now tell me again and i will try to change type of values
  8. D

    TalkAction Wow warlock summoning

    Hi, First of all the script its not tested im lazy to run mysql xD it should work for TFS 0.3.4 Well first explain how it works: -A player type !invoke player_name. -The player_name player gets a message telling him to type !accept or !reject in 2 minutes. -If the player_name player types...
  9. D

    [HELP] Summon like warlock wow

    Hi, I have a script that a gm write !invoke player_name, and then the player recive a message telling him to type !accept or !reject to go to the gm position or not. Well i think it should work well but i want to know if ther's a way to give a response time, so if you dont answear in 1...
Back
Top