Making items pickupable
From Platinum Arts Sandbox Free 3D Game Maker
Revision as of 17:00, 16 September 2010 by Daltonds1 (Talk | contribs) (Created page with 'This will show you how to pickup items First go to \my_stuff\packages\base Now if you dont have a .cfg for your map make a new text document and save it as (YOUR MAP NAME).cfg…')
This will show you how to pickup items
First go to
\my_stuff\packages\base Now if you dont have a .cfg for your map make a new text document and save it as
(YOUR MAP NAME).cfg
After that add this at the top //Picking up items level_trigger_1 = [ barrel = (+ $barrel 1) echo "You picked up a Barrel" ] For now we are going to add Barrels. To explain now.
level_trigger_1 This is what you will set the 3rd attribute to 0 to 1 echo "You picked up a Barrel" Will say this at the top of the screen
And thats it