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

    Dungeon System [ 0.4 / 0.3.7 / 0.3.6 ]

    instead of movement script you can use lever to get 3 or 4 players position and teleport them all at a time - but you need to add some lua in action script for storages etc. and in creaturescript to count depends on storage. hope this will help you.
  2. magista

    Programmer [TFS 0.4] Craft System

    job completed - topic to be closed
  3. magista

    Programmer [TFS 0.4] Craft System

    Actually I am looking for a crafting system with OTC v8 modules. I searched evry where and found nothing also have 0 experience with modules - so i need someone to help me with this system. Note: I can pay for this job.
  4. magista

    Lua [TFS 0.4] block player to add item to certain container

    It is more than perfect. Thanks @supermortaliz Also thanks for everyone tried to help.
  5. magista

    Lua [TFS 0.4] block player to add item to certain container

    Actually you are tottaly right but lets say i will make a event reward depot chest wich send the event bag to this chest (bag will not be pickable) and once player taking all the event items the bag will be deleted - but again i need to block player to add items, what i am thinking is to add...
  6. magista

    Lua [TFS 0.4] block player to add item to certain container

    I am trying to make event bag which will be given to a player after wining the event. I need to block player to add any item to this event bag and give him error message " You can't add items to this bag ". idk if there is a function to check when player add items to bag or not. so do someone...
  7. magista

    C++ [TFS 0.4] Create New Depot without depot chest

    It works, Thank you very much
  8. magista

    C++ [TFS 0.4] Create New Depot without depot chest

    I am creating Boss Reward chest for 8.6 OTS which autoloots certian bosses and send the reward to certain Depot, Almost evrything is perfect asi created new depot [different item id from normal depot] for a dummy town and send the parcel to this town depot but the problem is i need to make this...
  9. magista

    Depot password

    nice idea but i think it need OTClient edit.
  10. magista

    Depot password

    i think some players make the same username and password at almost all ots they are playing so i made this system ... also i will try to add 1 npc and make a n unmovable letter instead of box click on the letter then type your password inside if correct depot is free to use :D. @changos i was...
  11. magista

    Depot password

    Actually i was thinking about making something to protect depot in case your account got hacked i made this system, what do u think guys about it . Need you guys to write down if you have any better idea that i can modify this system. Also guys is it useful or not. Thanks
  12. magista

    Lua False Quest, lose health... Help!!

    you welcome
  13. magista

    Lua False Quest, lose health... Help!!

    use doCreatureAddHealth(cid, -hit) instead of doPlayerAddHealth(cid, -hit)
  14. magista

    Lua False Quest, lose health... Help!!

    use this function onUse(cid, item, frompos, item2, topos) local msg = "Die!" local posplayer = getPlayerPosition(cid) local hit =getCreatureHealth(cid) -1 doPlayerSendTextMessage(cid, 22, msg) if item.uid == 65457 then doPlayerAddHealth(cid,-hit) doSendMagicEffect(topos,12)...
  15. magista

    Solved tfs 0.3.6 and now 1.2, doplayer say and others

    there are alot of ways to call a function but i think easiest to use AddEvent(mow_1(creature), 1000) or you can use it directly like this mow_1(creature)
  16. magista

    Lua False Quest, lose health... Help!!

    i think this should work function onUse(cid, item, frompos, item2, topos) msg = "Die!" posplayer = getPlayerPosition(cid) hit =getCreatureHealth(cid) -1 doPlayerSendTextMessage(cid, 22, msg) if item.uid == 65457 then doPlayerAddHealth(cid,-hit) doSendMagicEffect(topos,12)...
  17. magista

    C++ GetDamageMap tfs version 0.4

    Hey guys is there any way to use getdamagemap function in tfs 0.4 i searched alot but got nothing. also i have searched in the source for "damagemap" i found alot of thing but actually i didn't understand what they are talking about :P BUMP
  18. magista

    [help] Forever amulet - Skull, Red Skull, Black Skull

    @FearWar This will be in creaturescripts make a new file name it necklacebless.lua function onLogin(cid) if (getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 2196 AND getPlayerBlessing(cid,1)) then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You have already been blessed by Forever...
Back
Top