-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.
-
Conteúdo Similar
-
script alguém pode me ajudar nessa spells aqui, queira que colocassem pro meu personagem ficar inatingível por 6 segundos e podendo atacar livremente
Por lazaroszz,
- 0 respostas
- 718 visualizações
-
- 0 respostas
- 2447 visualizações
-
- 3 respostas
- 3185 visualizações
-
- 2 respostas
- 1574 visualizações
-
- 1 resposta
- 1396 visualizações
-
Pergunta
flagoa 3
Salve Salve Scriptters...
Estou com 02 (dois) problemas. Um problema é que os players do meu servidor (9.60) estão deslogando mesmo com batle, e conseguem colocar montaria em área PZ. Gostaria de alguma informação de como não deixar os players com batle deslogarem, e além disso, que eles não utilizem montarias nas áreas PZ. Outro problema é com meu script da Inquisition, que após matar os bosses, os portais correspondentes não abrem!! Este script é de "Tommy". Por favor, me ajudem.
Segue o script da inquisition:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="Inquisition" version="1.0" author="Tommy" contact="tommycrusher@gmail.com" enabled="yes"> <event type="login" name="inquisitionRegister" event="script"><![CDATA[ function onLogin(cid) registerCreatureEvent(cid, "Inquisition") return true
<event type=kill" name="Inquisition" event="script"><![CDATA[ local config = { message = "Go into the teleporter in 3 minutes, else it will disappear.", -- Frase que vai aparecer apos matar o bicho timeToRemove = 180, -- Tempo para Remover o Teleporte em segundos teleportId = 1387, -- O ID do teleporte bosses = { -- Nome do Monstro, A posicao do Telporte, Aonde ele teleportara ["Ushuriel] = { { x=237, y=349, z=12}, { x=172, y=560, z=13, stackpos=1 } },
["Annihilon"] = { { x=640, y=480, z=13 }, { x=295, y=681, z=13, stackpos=1 } },
["Hellgorak"] = { { x=337, y=590, z=10 }, { x=255, y=467, z=13, stackpos=1 } },
["Madareth"] = { { x=343, y=467, z=13}, { x=287, y=364, z=13, stackpos=1 } },
["Zugurosh"] = { { x=381, y=523, z=13 }, { x=315, y=473, z=13, stackpos=1 } },
["Latrivan"] = { { x=508, y=351, z=13}, { x=408, y=413, z=13, stackpos=1 } }
}
}
local function removal(position)
if getThingfromPos(position).itemid == config.teleportId then
doRemoveItem(getThingfromPos(position).uid)
end
return TRUE
end
function onKill(cid, target, lastHit)
if lastHit == true then
local position = getCreaturePosition(target)
for name, pos in pairs(config.bosses) do
if name == getCreatureName(target) then
teleport = doCreateTeleport(config.teleportId, pos[1], pos[2])
doCreatureSay(cid, config.message, TALKTYPE_ORANGE_1)
addEvent(removal, config.timeToRemove * 1000, pos[2])
doSendMagicEffect(pos[2], 10)
end
end
end
return TRUE
end]]></event>
<action fromuid="1300" touid="1308" event="script"><![CDATA[
if item.uid == 1300 then
queststatus = getPlayerStorageValue(cid,50301)
if queststatus == -1 then
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "You have found robe of the underworld.")
doPlayerAddItem(cid,8890,1)
setPlayerStorageValue(cid,50301,1)
else
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "It is empty.")
end
elseif item.uid == 1301 then
queststatus = getPlayerStorageValue(cid,50301)
if queststatus == -1 then
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "You have found a Spellbook of Dark Mysteries.")
doPlayerAddItem(cid,8918,1)
setPlayerStorageValue(cid,50301,1)
else
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "It is empty.")
end
elseif item.uid == 1302 then
queststatus = getPlayerStorageValue(cid,50301)
if queststatus == -1 then
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "You have found a Fireborn Giant Armor.")
doPlayerAddItem(cid,8881,1)
setPlayerStorageValue(cid,50301,1)
else
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "It is empty.")
end
elseif item.uid == 1303 then
queststatus = getPlayerStorageValue(cid,50301)
if queststatus == -1 then
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "You have found a Master Archer's Armor.")
doPlayerAddItem(cid,8888,1)
setPlayerStorageValue(cid,50301,1)
else
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "It is empty.")
end
elseif item.uid == 1304 then
queststatus = getPlayerStorageValue(cid,50301)
if queststatus == -1 then
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "You have found a Royal Crossbow.")
doPlayerAddItem(cid,8851,1)
setPlayerStorageValue(cid,50301,1)
else
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "It is empty.")
end
elseif item.uid == 1305 then
queststatus = getPlayerStorageValue(cid,50301)
if queststatus == -1 then
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "You have found an emerald sword.")
doPlayerAddItem(cid,8930,1)
setPlayerStorageValue(cid,50301,1)
else
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "It is empty.")
end
elseif item.uid == 1306 then
queststatus = getPlayerStorageValue(cid,50301)
if queststatus == -1 then
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "You have found a obsidian truncheon.")
doPlayerAddItem(cid,8928,1)
setPlayerStorageValue(cid,50301,1)
else
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "It is empty.")
end
elseif item.uid == 1307 then
queststatus = getPlayerStorageValue(cid,50301)
if queststatus == -1 then
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "You have found a hellforged axe.")
doPlayerAddItem(cid,8924,1)
setPlayerStorageValue(cid,50301,1)
else
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "It is empty.")
end
elseif item.uid == 1308 then
queststatus = getPlayerStorageValue(cid,50301)
if queststatus == -1 then
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "You have found a Warsinger Bow.")
doPlayerAddItem(cid,8854,1)
setPlayerStorageValue(cid,50301,1)
else
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "It is empty.")
end
end
return TRUE]]></action>
</mod>
Link para o comentário
https://xtibia.com/forum/topic/195747-problemas-com-script-da-inquisition-deslogar-player-com-batle/Compartilhar em outros sites
2 respostass a esta questão
Posts Recomendados