View Single Post
  #3  
Old 08-12-2009, 06:02 PM
Liberated Liberated is offline
not doing alot
Liberated's Avatar
Join Date: Feb 2008
Posts: 1,366
Liberated has a spectacular aura about
so this?
PHP Code:
function getCoordinates(xOffsetyOffset) {
if (
playerdir==0)
{
  
this.x=player.x+0.5;
  
this.y=player.y-yOffset;
}
elseif (
playerdir==1)
{
  
this.x=playerx-xOffset;
  
this.y=player.y+0.5;
}
elseif (
playerdir==2)
{
  
this.x=player.x+0.5;
  
this.y=player.y+yOffset;
}
elseif (
playerdir==3)
{
  
this.x=player.x+xOffset;
  
this.y=player.y+0.5;
}
}
function 
onWeaponFired()
{
  
setani("lift"Null);
  
getCoordinates(77)
  
putexplosion2(1,2,this.x,this.y);
  
freezeplayer(0.5);
  
player.chat "Kaboom!"

you put xOffset in this.y at playerdir == 3 tho :P, but everyone makes error specialy me.
__________________
Quote:
Originally Posted by Tigairius View Post
I promise when I get rich I'll send you an iPhone. I'll send everyone an iPhone.
Reply With Quote