Hey
i know your very busy and probably wont have time to reply to this.
anyway my friends server (Dev Mrmagoo) i work on i made a script to explode where the mouse is.
it works perfect, except one thing, it doesnt work on a gmap

anyway heres the script if you have spare time could you see if anything is wrong with it
thanks
-Gunderak
//Script By Gunderak
//#CLIENTSIDE
function onKeyPressed(code, key, scancode) {
if (key == "B") {
putexplosion(2,mousex+1,mousey-1);
putexplosion(2,mousex-1,mousey+1);
putexplosion(2,mousex+1,mousey+1);
putexplosion(2,mousex-1,mousey-1);
putexplosion(2,mousex+4,mousey-4);
putexplosion(2,mousex-4,mousey+4);
putexplosion(2,mousex+4,mousey+4);
putexplosion(2,mousex-4,mousey-4);
}
}