this is the bullet collide effects sub if you were wondering
VB Code:
  1. Public Sub BulletCollideEffects(BulletNum As Integer, X As Integer, Y As Integer, WhoHit As Bltty, HitSide As Boolean)
  2.  
  3. With Bullet(BulletNum)
  4.     .Top = Y
  5.     .Left = X
  6.    
  7.    
  8.     If WhoHit.Move = True Then
  9.         WhoHit.Xinertia = WhoHit.Xinertia + (.Xinertia * GT(.Type).Weight)
  10.         WhoHit.Yinertia = WhoHit.Yinertia + (.Yinertia * GT(.Type).Weight)
  11.         WhoHit.Life = WhoHit.Life - GT(.Type).Power
  12.         If .Type = 3 Then
  13.             WhoHit.OnFire = True
  14.             WhoHit.Firetime = 10
  15.         End If
  16.         KillBullet BulletNum
  17.     ElseIf GT(.Type).Bounce = True And HitSide = True Then
  18.         .Xinertia = .Xinertia * -1
  19.         Moved = False
  20.     ElseIf GT(.Type).Bounce = True Then
  21.         .Yinertia = .Yinertia * -1
  22.         Moved = False
  23.     Else
  24.         .Move = False
  25.         KillBullet BulletNum
  26.     End If
  27. End With
  28.        
  29.  
  30. End Sub