// ZZ> This function makes an item fall to the floor when spawned
IfSpawned				//
  tmpargument = ACTIONJB		  //
  DoAction				  //
  KeepAction				  //
  MakeCrushValid
  MakeAmmoKnown
IfCrushed
  tmpx = selfx
  tmpy = selfy
  tmpdistance = selfz
  tmpargument = 3
  SpawnExactParticle
  SpawnExactParticle
  SpawnExactParticle
  SpawnExactParticle
  GoPoof
  tmpargument = 6
  SendMessageNear
IfDropped				// Make it lie on floor
  KeepAction				  //
IfHitGround				// Make a sound
  tmpargument = 0
  PlaySound	

//Go blank  
IfInWater
  IfHeld
    DoNothing
  Else
    // Go blank
    tmpargument = 0
    IfContentIs
      tmpargument = 1
      SetContent
      tmpargument = 5
      SendMessageNear
      MakeNameKnown      // To keep messages okay
      
IfGrabbed				// Tell them what they've won...
  SetTargetToWhoeverIsHolding		  //
  SetOwnerToTarget
  IfTargetIsAPlayer			  //
    GetContent
    SendMessageNear			  //
    
//Scroll effects
IfUsed
  tmpargument = 0
  IfContentIs
    // The scroll has writing on it
    tmpargument = 1
    PlaySound

    //Spelly effects
    tmpx = selfx
    tmpy = selfy
    tmpdistance = 0
    tmpargument = 0
    SpawnExactParticle

    SetTargetToWhoeverIsHolding
    tmpargument = 50
    SetTargetReloadTime
    IfNameIsKnown
      DoNothing
    Else
      tmpargument = 10
      SendMessageNear
      tmpdistance = EXPDARE
      GiveExperienceToTarget
    MakeSimilarNamesKnown


    //Enchant the target
    SetOwnerToTarget
    EnchantTarget
    FlashTarget

    tmpx = targetx
    tmpy = targety
    tmpdistance = 0
    tmpargument = 5
    SpawnExactParticle

    tmpargument = 8
    SendMessageNear
   
    CostAmmo
    IfAmmoOut
      GoPoof
  Else
    // Can't use a blank scroll...
    tmpargument = 0
    SetState
    tmpargument = 7
    SendMessageNear
    tmpargument = 50
    SetReloadTime
    
//On fire!
IfReaffirmed
  IfHeld
    DoNothing
  Else
    tmpx = selfx
    tmpy = selfy
    tmpdistance = selfz
    tmpargument = 3
    SpawnExactParticle
    SpawnExactParticle
    SpawnExactParticle
    SpawnExactParticle
    GoPoof
    tmpargument = 4
    SendMessageNear
IfNameIsKnown
  IfStateIs0
    tmpargument = 1
    ChangeArmor
    SetState
  Else
    DoNothing 
End					// All done
