custom blizz abs evented system thing

Started by Zexion, July 30, 2010, 10:56:35 am

Previous topic - Next topic

Zexion

July 30, 2010, 10:56:35 am Last Edit: July 31, 2010, 03:14:46 am by Zexion
First off I am using RMXP. I am also reffering to blizz abs buttons.
Okay, so I am using a custom evented HUD/Command menu for my KH game. (I'm making it lol)
I need to know how to disable the attack button through the call script in an event.
I also need to know how to disable any button like that.
Also i need to know how to check if they pressed a button like that whole inputTrigger or whatever it is.

EXAMPLE:
If the player presses "S" it disables the blizz-abs button "A" (which is for attack).

NEW QUESTION: Okay so i got all the custom hud things scrolling in my kingdom hearts fan game, now i need to know how to make the play use a skill on the enemy.  
For example in the menu hud command thingy the player has to chose MAGIC and then choose a spell/
Magic > Fire > Player uses the skill on enemys

I'm using blizz abs, and i like when you choose a hot key then it shows a circle on what enemy you want to hit, but how would i do that from an event.
I guess i would have to call something but what?
Even better I would like to know just how to call that custom skill. Like if they click fire and i have a fire skill set up to do something in the database
then it does whatever it is supposed to do from the database. (That is the best i can explain it :c)

Also(seperate issue) I just remembered that i need to know how to check what player is the leader. Because if it is sora it should show sora's face in the hud and if it is riku it should show his face in the hud.

WhiteRose

Just use script calls like these:

$game_system.attack_button = false
$game_system.defend_button = false
$game_system.skill_button = false
$game_system.item_button = false
$game_system.select_button = false
$game_system.hud_button = false
$game_system.hotkey_button = false
$game_system.minimap_button = false
$game_system.turn_button = false

Those are just a few examples.

Blizzard

You have a list of all buttons in the manual. This change is saved with the game.
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

Zexion

Okay thanks :) that solves the first thing. I didn't think it would be that easy lol, but how do i call the inputbutton thing lol. I want to call keys that aren't on the blizz abs module

WhiteRose

Quote from: Zexion on July 30, 2010, 12:56:53 pm
Okay thanks :) that solves the first thing. I didn't think it would be that easy lol, but how do i call the inputbutton thing lol. I want to call keys that aren't on the blizz abs module


http://forum.chaos-project.com/index.php/topic,6400.0.html

Zexion

July 30, 2010, 03:52:20 pm #5 Last Edit: July 30, 2010, 04:20:53 pm by Zexion
GAH i fixed it :D

SBR*

So... you want to have a hotkey system for skills...? It's built in BlizzABS, just call it by using this:

$scene = Scene_Hotkeys.new


If you want to event it, it'd take a really long time.