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

    [TFS 1.x] Monster pick up item and throw

    Just a little fun: Monster picks up item from ground and throws it at the player. Put <script> <event name="rockthrow"/> </script> in the monster xml and in creaturescripts.xml <event type="think" name="rockthrow" script="rockthrow.lua" /> and in rockthrow.lua local rockid = 1285 function...
  2. Aled

    Lua Quest time online to do again

    I don't know, I can't test it but I will be here if you got any problems
  3. Aled

    Lua Quest time online to do again

    yeah I didn't read it, too many dumb questions on this board change script to this local quests = { [8000] = { item = 2385, lvl = 1, days = 10 }, -- sabre [8001] = { item = 2485, lvl = 2 }, -- doublet [8002] = { item = 2526, lvl = 3 }, -- studded shield [8103] = { item = 8293...
  4. Aled

    Lua Making Target Spell Static

    I assume it worked for him I've seen it done in older distros, since a position is just an array {x = 1000, y = 1000, z = 7} you can just add them {x = 1000, y = 1000, z = 7} + {x = 10, y = -10} = {x = 1010, y = 990, z = 7} for example Don't think it works in newer distros
  5. Aled

    Lua Quest time online to do again

    This has been done many times just recently, using the search function with some choice key words or looking back on this board a little will net you what you want this is what you need to do local quests = { [8000] = { item = 2385, lvl = 1 }, -- sabre [8001] = { item = 2485, lvl = 2 }...
  6. Aled

    Lua NPC Monster Tasks

    yes I made some mistakes =( made edits to script above though welcome np but please test to see if the script works for tasks other than dragons also, more will have to be changed to include the item requirement when you say list done
  7. Aled

    Lua NPC Monster Tasks

    well kill 9 more dragons then
  8. Aled

    Lua NPC Monster Tasks

    again
  9. Aled

    Lua NPC Monster Tasks

    edited try again
  10. Aled

    Lua Help to make only 1 infinite Rune! (only 1, not all)

    distro? what kind of rune? perhaps best done in actions
  11. Aled

    Lua Making Target Spell Static

    do this function onCastSpell(cid, var) doSendDistanceShoot(getCreaturePosition(cid), getCreaturePosition(getCreatureTarget(cid)), CONST_ANI_FIRE) doAreaCombatHealth(cid, COMBAT_PHYSICALDAMAGE, getCreaturePosition(getCreatureTarget(cid))+{x=1}, {1}, -10, -20, CONST_ME_DRAWBLOOD)...
  12. Aled

    Lua Making Target Spell Static

    idk where you got that script from but its so much easier to do this
  13. Aled

    Boss Mazoran

    what do you want?
  14. Aled

    Lua NPC Monster Tasks

    -- Monster Tasks by Limos local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local xmsg = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  15. Aled

    C++ Detect opcodes errors

    How to display CODE properly in your post Rules for the Support board
  16. Aled

    Solved Hi. I need help with a mission npc that recieve items but the script dont work.

    You do not need the 'end' on line 24
  17. Aled

    Solved Hi. I need help with a mission npc that recieve items but the script dont work.

    you did not copy what I provided you as is on line 20 you must have doPlayerRemoveItem(cid,8843,14) then
  18. Aled

    Can I do it on this script?

    here are two pages you should keep in mind when you want to achieve anything in lua [TFS 1.0 / 1.2] LUA Functions [TFS 1.X] Enums
  19. Aled

    Solved Hi. I need help with a mission npc that recieve items but the script dont work.

    distro? console errors? dont do this if getPlayerItemCount(cid,11219) and (cid,10033) and (cid,2219) and (cid,8843) >= 1 then if doPlayerRemoveItem(cid,11219,15), (cid,10033,30), (cid,2219,30), (cid,8843,14) then do this if getPlayerItemCount(cid,11219) >= 15 and...
  20. Aled

    Only one time quest

    Use a global storage value instead of a player storage value
Back
Top