Jump to content

How do I make Soulsphere portable?


ShagaDoom

Recommended Posts

Spoiler

ACTOR Soulsphere2 : Health 32724
{
  Game Doom
  +COUNTITEM
  +INVENTORY.AUTOACTIVATE
  +INVENTORY.ALWAYSPICKUP
  +INVENTORY.FANCYPICKUPSOUND
  Inventory.Amount 200
  Inventory.MaxAmount 200
  Inventory.PickupSound "misc/pkup1"
  States
  {
  Spawn:
    SLP2 ABCDCB 6 Bright
    Loop
  }
}

 

How can I do it?

Share this post


Link to post
21 hours ago, ShagaDoom said:
  Reveal hidden contents

ACTOR Soulsphere2 : Health 32724
{
  Game Doom
  +COUNTITEM
  +INVENTORY.AUTOACTIVATE
  +INVENTORY.ALWAYSPICKUP
  +INVENTORY.FANCYPICKUPSOUND
  Inventory.Amount 200
  Inventory.MaxAmount 200
  Inventory.PickupSound "misc/pkup1"
  States
  {
  Spawn:
    SLP2 ABCDCB 6 Bright
    Loop
  }
}

 

How can I do it?

Do it better as follows:

 

Spoiler

ACTOR Soulsphere2 : HealthPickup 32724
{
  Health -200
  HealthPickup.Autouse 1
  Inventory.PickupSound "pickup/health5"
  Inventory.UseSound "misc/pkup1"
  +COUNTITEM
  States
  {
  Spawn:
    SLP2 ABCDCB 6 Bright
    Loop
  }
}

 

Share this post


Link to post

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...