// ZZ> This function makes an item fall to the floor when spawned
IfSpawned				//
  tmpargument = ACTIONJB		  //
  DoAction				  //
  KeepAction				  //
  MakeCrushValid
  ReaffirmCharacter
IfTakenOut
  ReaffirmCharacter
IfCrushed
  tmpx = selfx
  tmpy = selfy
  tmpdistance = selfz
  tmpargument = 5
  SpawnExactParticle
  SpawnExactParticle
  SpawnExactParticle
  SpawnExactParticle
  GoPoof
  tmpargument = 1
  SendMessageNear
IfDropped				// Make it lie on floor
  KeepAction				  //
IfHitGround				// Make a sound
  tmpargument = 2			  //
  PlaySound	
  //
IfUsed
  IfNameIsKnown		// Found out what it was
    DoNothing
  Else
    MakeNameKnown
    SetTargetToWhoeverIsHolding
    tmpargument = 10
    tmpdistance = EXPDARE
    GiveExperienceToTarget
    
IfGrabbed				// Tell them what they've won...
  SetTargetToWhoeverIsHolding		  //
  IfTargetIsAPlayer			  //
    tmpargument = 0			  //
    SendMessageNear			  //
IfAmmoOut
  GoPoof
  tmpargument = 2
  SendMessageNear
End					// All done
