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

    help here pls

    I think that'd require either database or source editing.. Nothing I can do, atleast. sorry :|
  2. kyoushirou

    Runes and Potions 8.60

    Oh, well that sucks. Sorry I could'nt be of help :(
  3. kyoushirou

    Runes and Potions 8.60

    Make a file named runeuse.lua inside data/actions/scripts Add the script to it: function onUse(cid, item, fromPosition, itemEx, toPosition) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, 'Using one of ' .. getPlayerItemCount(cid, item.itemid) .. ' ' ...
  4. kyoushirou

    Anyone can fix this script?

    Try this. function onSay(cid, words, param, channel) if(param == '') then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.") return true end local tid = cid local t = string.explode(param, ",")...
  5. kyoushirou

    help here pls

    Not sure what you wanted, but here's a really noobish script, since I couldnt be arsed to make a good one :p function onKill(cid, target) if isPlayer(target) then local points = getPlayerPoints(cid) if (points >= 100 and points <= 299) then doCreatureSetSkullType(cid, 1) elseif (points...
  6. kyoushirou

    Runes and Potions 8.60

    If it could work with an onUse you could make a simple lua script and add it to all runes. (ACTIONS, NOT SPELLS!) function onUse(cid, item, fromPosition, itemEx, toPosition) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, 'Using one of ' .. getPlayerItemCount(cid, item.itemid) .. ' ' ...
  7. kyoushirou

    Programmer Paying someone to secure my server

    That's why he's paying.. @topic, add my msn: [email protected]
  8. kyoushirou

    Level 1 Glitch

    but to 30 then, not 100.. RIGHT?
  9. kyoushirou

    Anyone can fix this script?

    getTownName(tmp, false) Err, works like.. getTownName(townid) aka, the town id CANNOT be a position. (As declared just before it, tmp = getCreaturePosition(tid)) If you just got one town replace doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Voce foi movido para " ...
  10. kyoushirou

    Hold your breath and press "l" game.

    iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii...
  11. kyoushirou

    Windows Massive skills?

    Bump!
  12. kyoushirou

    Look player Frag REP +

    Try adding a return true before the final "end".
  13. kyoushirou

    Need rune of teleport to temple please

    Use this: function onUse(cid,item,fromPosition,itemEx,toPosition) if isPlayerPzLocked(cid) == FALSE then doTeleportThing(cid,getPlayerMasterPos(cid)) doSendMagicEffect(getThingPos(cid),10) doPlayerRemoveItem(cid, 2270, 1) else doPlayerSendTextMessage(cid,27,'You can\'t use this while...
  14. kyoushirou

    Need rune of teleport to temple please

    It is stackable, just make sure the npc that sells it sells it with 5 charges, or if you use a spell to conjure it, that it conjures with 5 charges.No need to bother with spells.xml
  15. kyoushirou

    Need rune of teleport to temple please

    no, not at all, just make sure the item id you use for the rune is stackable, aka that it CAN have charges.
  16. kyoushirou

    Need rune of teleport to temple please

    If it's a rune already, just make it spawn with 5 charges.. Like doPlayerAddItem(cid, 1111, 5) -- 1111 is the item id.
  17. kyoushirou

    critical hit

    Ofc, create 2 combats in the spell (combata & combatb) then inside the onCast function make it a random chance that combatb(with crit dmg) is cast. So like this: -- normal exori mort local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE)...
  18. kyoushirou

    Need rune of teleport to temple please

    function onUse(cid,item,fromPosition,itemEx,toPosition) if isPlayerPzLocked(cid) == FALSE then doTeleportThing(cid, getPlayerMasterPos(cid)) doSendMagicEffect(getThingPos(cid),10) else doPlayerSendTextMessage(cid,27,'You can\'t use this while having PZ.') end return true end Just...
  19. kyoushirou

    Lua Rescript a script!

    You might need to register it in movements.xml (onEquip & onDeEquip)
  20. kyoushirou

    Lua Rescript a script!

    You got no </item> tag?
Back
Top