[Pedido] Los players de la misma voc no se ataquen.
2 participantes
- LepidumMiembro
- Mensajes : 7
[Pedido] Los players de la misma voc no se ataquen.
Dom Mayo 20, 2012 12:37 pm
El titulo lo dice todo, ocupo un script que los players de la misma vocation no se puedan atacar quien me lo pudiera conseguir se lo agradeceria MUCHO C;
Re: [Pedido] Los players de la misma voc no se ataquen.
Dom Mayo 20, 2012 1:13 pm
- Código:
function onAttack(cid, target)
local mages, warriors = {1, 2}, {3, 4}
if isMonster(target) or isMonster(cid) then
return true
end
if(isInArray(mages, getPlayerVocation(cid)) and isInArray(warriors, getPlayerVocation(target)) or (isInArray(warriors, getPlayerVocation(cid)) and isInArray(mages, getPlayerVocation(target)))) then
doPlayerSendCancel(cid, "You can not attack this player.")
return false
end
return true
end
Pruebalo .
Permisos de este foro:
No puedes responder a temas en este foro.