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

    set storage exp gain/exp lost

    Hello, I need 2 similar scripts. 1. every you gain exp form mosnter to ->> setPlayerStorageValue(cid, 999, + HERE EXP GAINED ) 2. and every time when you dead and loss any exp ->> setPlayerStorageValue(cid, 999, - HERE EXP LOST)
  2. Mauzim

    bank transfer to voc > 0

    how to add it here -- transfer if talk_state[cid] == 40 and getCount(msg) > 0 then if getPlayerBalance(cid) >= getCount(msg) then talk_state[cid] = 41 last_count[cid] = getCount(msg) sayText = 'Who would you like transfer ' ...
  3. Mauzim

    3 stages of farmine and Shard of Corruption pleace

    Looking for map where i can find 3 stages of farmine and Shard of Corruption pleace
  4. Mauzim

    Request Zoltan real ue buy

    Need Zoltan with real ue with can buy from him and choice sorcerer: Hell's Core or Rage of the Skies and Eternal Winter, Wrath of Nature to druid
  5. Mauzim

    NPC BUG OTHER NPC SAY SAME THING

    In this situation i speak with Yberius Obi is normal npc who walking and when i write heal obi respond too this situation is with all nearly npc and all types codes ex. trade, keyworlds, keywordHandler, msgcontains etc. but not in doNPCTalkALot because it is other function my question is how...
  6. Mauzim

    random 1++ spawn boss

    how to add to this script if win random 1-21 spawn then make random location of this mob like in 5 or 12 local mobs = { -- 1 [1] = {x = xxxx, y = xxxx, z = xx, mob="XXXXXX"}, [2] = {x = xxxx, y = xxxx, z = xx, mob="XXXXXX"}, [3] = {x = xxxx, y = xxxx, z = xx...
  7. Mauzim

    after login player cannot be attacked

    after login player cannot be attacked from x secconds from monsters and players im using otx 2.9 se and now after login player cannot use spells or attack monsters but players and mosnters can attack this player i guess its wrong how to fix that?
  8. Mauzim

    onKill add aid to monster corpse

    onKill add aid to monster corpse it is possible?
  9. Mauzim

    Player daily exp in page

    any1 know how to do player daily exp in old gesior acc for tfs 4.0 highscores of daily exp can be too but im target single player daily exp in character page
  10. Mauzim

    html shop offers 3 in row

    if(count($offer_list['item']) > 0) { $main_content .= '<table cellspacing="2" cellpadding="2" width=30>'; foreach($offer_list['item'] as $item) { $main_content .= '<td class="shop"> <a class="shop" style="display: block;"...
  11. Mauzim

    guild war player killed by summon not show

    this code is wrong because it not show if enemy is killed by summon of attacker
  12. Mauzim

    problem with snow tiles onStepOut

    function onStepOut(cid, item, position, fromPosition) if isPlayer(cid) and not isPlayerGhost(cid) then if item.itemid == 670 then doTransformItem(item.uid, 6594) else doTransformItem(item.uid, item.itemid + 15) end doDecayItem(item.uid)...
  13. Mauzim

    send broadcast text to players with storage

    it is possible?
  14. Mauzim

    getTileItemById

    in tfs 4.0 i cannot use getTileItemById for what i can replace this function? local teleport = { [3103] = {action = 1, {x = 32861, y = 31061, z = 9}, {x = 32859, y = 31056, z = 9}}, [3104] = {action = 0, {x = 32856, y = 31055, z = 9}}, [3105] = {action = 1, {x = 32888, y = 31045, z...
  15. Mauzim

    Your quest log has been updated. every taks

    i ahve problem every moob i kill and i get 14:49 Your quest log has been updated. example. <mission name="Trolls Task" storageid="65001" startvalue="0" endvalue="100" description="You've already slained |STATE|/100 trolls." />
  16. Mauzim

    inq portals problem

    local teleports2 = { [2150] = {text = "Entering Ushuriel's ward.", newPos = {x = 33158, y = 31728, z = 11}}, -- to ushuriel ward } local teleports = { [2151] = {boss = true, text = "Entering the Crystal Caves.", bossStorage = 200, newPos = {x = 33069, y = 31782, z = 13}, storage = 1}...
  17. Mauzim

    doCreatureSay text on position how ?

    i need help how make text liek doCreatureSay to position doCreatureSay({x=, y=, z=7}, 'text', TALKTYPE_ORANGE_1) thats not working ahh and don't like doSendAnimatedText because i need TALKTYPE_ORANGE_1 not animated //got it !doCreatureSay(cid, "pre", TALKTYPE_ORANGE_1, false, cid, {x=, y=, z=7})
  18. Mauzim

    msg = msg:lower() what is problem

    Hello i use otx 2.9 npc lib and there i have problem in npc.lua i wanna change all msg to msg:lower in msgcontains i have function msgcontains(message, keyword) local message, keyword = message:lower(), keyword:lower() local msg = msg:lower() if message == keyword then...
  19. Mauzim

    PUSH FROM DIST REAL

    I FIXED PUSH FROM DIST WITH CHANGE true for false but i need help because in real push from dist isn't insantly but like 0.5 sec after push how to add this 0.5 sec action daily Creature* movingCreature = getCreatureByID(movingCreatureId); if(!movingCreature || movingCreature->isRemoved()...
  20. Mauzim

    PLAYER GET SKULL IF ATTACK WAR ENEMY

    IN OTX 2.9 8.70 I HAVE PROBLEM WHEN PLAYER IS IN WAR MAKE RED FIST AND ATTACK WAR ENEMY HE GET SKULL MAYBE IS PROBLEM HERE void Player::onTarget(Creature* target) { Creature::onTarget(target); if(hasFlag(PlayerFlag_NotGainInFight)) return; if(target == this) {...
Back
Top