I made a custom bomb becuase The Owner wanted one but I got it to work but it doesnt work on the gmap. Heres the script
PHP Code:
//#CLIENTSIDE
function onWeaponFired() {
if (player.bombs > 0) {
player.bombs = player.bombs - 1;
if (player.dir==0) {
putbomb(1,player.x+0.5,player.y-0.5);
}
else if (player.dir==1) {
putbomb(1,player.x-1,player.y+0.8);
}
else if (player.dir==2) {
putbomb(1,player.x+0.5,player.y+1.5);
}
else if (player.dir==3) {
putbomb(1,player.x+2,player.y+0.8);
}
}
}
Is this another one of those gmap bugs? Anyway to fix it?