Just wondering if its normal for the bomb to not show up on a gmap at all. I also have a scripted bomb, but it wont show up on the gmap either.
arrows just repeat in the level when shot, which is kinda weird.
PHP Code:
//#CLIENTSIDE
function onWeaponFired() {
if (player.bombs > 0) {
setani("lay", NULL);
freezeplayer(0.2);
if (isOnMap) {
temp.px = player.x - (64 * getMapX(player.level)) + 0.5 + vecx(player.dir)*2;
temp.py = player.y - (64 * getMapY(player.level)) + 0.5 + vecy(player.dir)*2;
putBomb(1, temp.px, temp.py);
}
else {
putbomb(1,player.x + vecx(player.dir)*2, player.y + 0.5 + vecy(player.dir)*2);
}
player.bombs --;
}
}
if anyone would have a community bomb and arrow script that could fix this problem.