DBCHEST'S PROFILE
dbchest
0
Search
Filter
Airship
p2.png
Airship
believe it or not i began with a blur, but being that the propellers are only two pixels wide there wasn't much room for the effect to apply. to say the least, the result was undesirable from my perspective.
that's what the RTP is for, guy ;).
i only took the default vehicle sprites for use.
i made the propellers, the wires, and the beam supporting the props from scratch.
that's what the RTP is for, guy ;).
i only took the default vehicle sprites for use.
i made the propellers, the wires, and the beam supporting the props from scratch.
Airship
i'm in the early stages of an airship sprite. i wanted to share what i have thus far for some feedback. inspiration comes from the cargo ship (FFIX).


Snippets for Adding and Removing Features from Actors?
hey Marren, thanks so much for working on this with me and trying to resolve this dilemma. i decided to take another route though after numerous syntax errors. instead of trying to apply features directly i found that it works just as well to apply a new state to the actors, which includes the auto battle feature as its primary effect.
$game_party is a variable that stores information about your party, including each actor that makes up your battle team. i allow the player to toggle the auto battle feature from the main menu as though he is selecting an actor to view his stats or his skills, etc...so specifically, you toggle auto battle from the menu status window. ultimately, by passing the status window's index through $game_party i tell the game to evaluate the toggle method only for the actor who is being currently selected on the status window and no one else. that is why i pass the status window through $game_party as an argument.
if you're interested in taking a closer look, here is a demo i made. you can gander at all code mods in there. again, thanks for helping out!
dbchest's Auto Battle and Simple Status
$game_party is a variable that stores information about your party, including each actor that makes up your battle team. i allow the player to toggle the auto battle feature from the main menu as though he is selecting an actor to view his stats or his skills, etc...so specifically, you toggle auto battle from the menu status window. ultimately, by passing the status window's index through $game_party i tell the game to evaluate the toggle method only for the actor who is being currently selected on the status window and no one else. that is why i pass the status window through $game_party as an argument.
if you're interested in taking a closer look, here is a demo i made. you can gander at all code mods in there. again, thanks for helping out!
dbchest's Auto Battle and Simple Status
Snippets for Adding and Removing Features from Actors?
i have been working on this for a couple of hours (a little disappointed that i've been unsuccessful) and i have the groundwork in place. this is an extremely simple task to achieve if i could discover the syntax to add the auto battle feature. i'm utilizing the "on_personal_ok" case method from the menu script to toggle between the feature's state. looks something like this.
all i need to do is set up my new method "swap_tactics" to do nothing more than toggle the selected actor's auto battle feature state. sounds so simple, but i can't discover the syntax for the life of me. my method looks like this.
i refresh the status window after the fact because i have icons that indicate the current status of the auto battle feature. does anyone know how the hell to toggle the state of a feature!? LOL.
def on_personal_ok
case @party_command_symbol.current_symbol
when :skill
SceneManager.call(Scene_Skill)
when :equip
SceneManager.call(Scene_Equip)
when :status
SceneManager.call(Scene_Status)
when :tactics
swap_tactics
when :transgress
SceneManager.call(Scene_Transgress)
when :trophies
SceneManager.call(Scene_Trophies)
end
end
all i need to do is set up my new method "swap_tactics" to do nothing more than toggle the selected actor's auto battle feature state. sounds so simple, but i can't discover the syntax for the life of me. my method looks like this.
def swap_tactics
actor = $game_party.members[@status_window.index]
if actor.auto_battle?
insert code here to remove auto battle
elsif !actor.auto_battle?
insert code here to add auto battle
end
@status_window.refresh
@status_window.activate
end
i refresh the status window after the fact because i have icons that indicate the current status of the auto battle feature. does anyone know how the hell to toggle the state of a feature!? LOL.
Snippets for Adding and Removing Features from Actors?
how's it going guys? i need some help figuring out how to add and remove "features" from the actors via the script editor.
what i'm hoping to accomplish:
i'm working on a custom menu system to be used in my game only. i'm still fairly new at scripting so i get sideswiped often. i'm making strides though in my opinion, but i need some help this time. i included a "Tactics" option in my main menu. the purpose of this option is to toggle between manual and auto battling modes from the main menu. upon selecting the "Tactics" command via the main menu, i made it so the command becomes personal as though you're selecting an actor to view his status or equipment, etc. by pressing the "ok" button on each of your actors, you toggle their tactic mode.
the only thing i need help with is discovering the proper syntax to apply or remove the auto_battle? feature from actors. thanks in advance guys.
what i'm hoping to accomplish:
i'm working on a custom menu system to be used in my game only. i'm still fairly new at scripting so i get sideswiped often. i'm making strides though in my opinion, but i need some help this time. i included a "Tactics" option in my main menu. the purpose of this option is to toggle between manual and auto battling modes from the main menu. upon selecting the "Tactics" command via the main menu, i made it so the command becomes personal as though you're selecting an actor to view his status or equipment, etc. by pressing the "ok" button on each of your actors, you toggle their tactic mode.
the only thing i need help with is discovering the proper syntax to apply or remove the auto_battle? feature from actors. thanks in advance guys.
Pages:
1













