View Single Post
  #1  
Old 07-29-2006, 04:00 AM
Angel_Light Angel_Light is offline
Varia Developer
Angel_Light's Avatar
Join Date: Nov 2005
Location: Knoxville, TN
Posts: 1,684
Angel_Light is on a distinguished road
Send a message via AIM to Angel_Light Send a message via MSN to Angel_Light
PutBomb on Gmap issue???

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?
__________________
Deep into the Darkness peering...
Reply With Quote