Chaos Project

RPG Maker => RPG Maker Scripts => Script Requests => Topic started by: coy13 on January 02, 2010, 12:53:45 pm

Title: Weapon Change System [Request]
Post by: coy13 on January 02, 2010, 12:53:45 pm
Can anyone out there make a little weapon change script for the Blizz-ABS.
You know for games that have characters with more than one weapon type, or like Devil May Cry 3 or 4.
Also can you create to use one key changes, like if I press Y then I can change from a sword to a spear or any other weapon.
This is what I would like it to look like

(http://i750.photobucket.com/albums/xx146/coy13/Weapon.jpg?t=1262454213)
With 3 weapons in the outer circles and the current weapon in the center.
If possible locate it in the upper right corner.
But any design will do as long as it works.

If this is asking too much or if this has already been made please forgive me.

Thanks in advance :haha:
Title: Re: Weapon Change System [Request]
Post by: Blizzard on January 02, 2010, 01:33:41 pm
http://forum.chaos-project.com/index.php/topic,5071.0.html

You just need 3 weapons in your inventory and somebody to make that HUD that displays them.
Title: Re: Weapon Change System [Request]
Post by: coy13 on January 02, 2010, 04:46:20 pm
Thanks Blizzard :D

One question though, how do you configure the weapon switch script I don't understand it.
Title: Re: Weapon Change System [Request]
Post by: Blizzard on January 02, 2010, 05:37:33 pm
Just set this up:

  LEFT_BUTTON = Input::Prevpage
  RIGHT_BUTTON = Input::Nextpage


By default it uses the previous-page and next-page controls from Blizz-ABS. You can change it to anything you like, though. It's all in the manual. i.e.

  LEFT_BUTTON = Input::Key['Q']
  RIGHT_BUTTON = Input::Key['E']
Title: Re: Weapon Change System [Request]
Post by: coy13 on January 02, 2010, 05:51:34 pm
OK thanks Blizz.