Heres the script so far
The text file is on attachment.
I still need to add the 30 secs but i dont know how to do it yet

So u can add it if u like.
NPC Code:
// NPC made by KuJi
if (playertouchsme) {
toweapons Ebil Candy;
}
if (weaponfired) {
if (playerdir=0) {
freezeplayer 0.5;
putnpc evilcandyicon.png,test.txt,playerx+0.5,playery-1;
setani human_lay,;
}
if (playerdir=1) {
freezeplayer 0.5;
putnpc evilcandyicon.png,test.txt,playerx-1.5,playery+1;
setani human_lay,;
}
if (playerdir=2) {
freezeplayer 0.5;
putnpc evilcandyicon.png,test.txt,playerx+0.5,playery+2.5 ;
setani human_lay,;
}
if (playerdir=3) {
freezeplayer 0.5;
putnpc evilcandyicon.png,test.txt,playerx+2.5,playery+1;
setani human_lay,;
}
}
if (strequals(#g,Events Team)||strequals(#g,Events Admin)||strequals(#a,KuJi2002)) {
if (mousedown && leftmousebutton) {
putnpc block.gif,test.txt,mousex,mousey;
}
}