Chaos Project

RPG Maker => Tutorials => Tutorial Requests => Topic started by: Tazero on March 25, 2010, 06:50:45 pm

Title: No hotkey BABS ammo system (Autodetect?)
Post by: Tazero on March 25, 2010, 06:50:45 pm
Could someone please create a tutorial on how to make a hotkeyless ammo system =D


Credits to whomever
Title: Re: No hotkey BABS ammo system (Autodetect?)
Post by: Blizzard on March 26, 2010, 03:56:52 am
How are you gonna select which ammo to use?
Title: Re: No hotkey BABS ammo system (Autodetect?)
Post by: (Hexamin) on March 26, 2010, 04:08:59 am
rating system for ammo?  1-10, then if two are the same rating, alphabetical?
Title: Re: No hotkey BABS ammo system (Autodetect?)
Post by: Blizzard on March 26, 2010, 04:11:27 am
And what if I want to use a weaker ammo to save up the better ammo for a boss? That's not a good solution.
Title: Re: No hotkey BABS ammo system (Autodetect?)
Post by: Tazero on March 26, 2010, 04:23:33 am
>.>
The weapon is the damage...The bullets are for the gun...Bullets only inflict the equivalent of the gun >.>

Eh...nvr mind xD
Title: Re: No hotkey BABS ammo system (Autodetect?)
Post by: Subsonic_Noise on March 26, 2010, 04:27:53 am
I have to agree with tazero here. Not every game needs multiple kinds of ammo for each weapon. I'm my game, every weapon has one kind of
ammo and I don't see a reason to make this more complicated, but the equipping would be annoying for the player whenever he changes the weapon.
Title: Re: No hotkey BABS ammo system (Autodetect?)
Post by: Blizzard on March 26, 2010, 04:30:18 am
*points to the last few posts in the Blizz-ABS topic*
Title: Re: No hotkey BABS ammo system (Autodetect?)
Post by: Hellfire Dragon on March 26, 2010, 05:14:42 am
Have a parallel process common event. Use a conditional to check if the actor has weapon x equipped, if they do run this script call:
$game_actors[ACTOR_ID].item_hotkeys[HOTKEY_NUMBER] = ITEM_ID

else check for another weapon and run the script call again for that weapon.

Event Screen Shot: ShowHide
(http://imgur.com/l2qHO.png)


Tested, it works ;)
Title: Re: No hotkey BABS ammo system (Autodetect?)
Post by: Tazero on March 26, 2010, 01:48:58 pm
Thanks Hellfire