Log in

View Full Version : [HELP] SAFE SKULL



brubruzera
06-03-2016, 04:58 PM
1 - Need an action to if my chracater get skulled play the alarm.

2 - Need an action to if my character get one frag he exit the client.

If someone can share this... :D

brubruzera
06-03-2016, 09:10 PM
Uppppppppp

brubruzera
06-05-2016, 06:17 PM
Anyone can help?

brubruzera
06-06-2016, 08:35 AM
No one can makes an lua who starts alarm when my character skulled?

Merre
06-06-2016, 12:57 PM
What's the point when you dont even own a xenobot subscription?

MrTrala
06-07-2016, 11:20 AM
--[[
Alarm an' shit by Trala
]]

config = {
Dist = 7
}

function Pked()
for _, c in Creature.iPlayers(config.Dist) do
if c:isAlive() and c:DistanceFromSelf() <= config.Dist and c:Skull() >= 2 then
alert()
end
end
end
registerEventListener(TIMER_TICK, "Pked")


That's the one for alarm if pk (didn't test it).