[Resolved]Help

Started by chibievil, December 08, 2018, 10:25:31 pm

Previous topic - Next topic

chibievil

December 08, 2018, 10:25:31 pm Last Edit: December 09, 2018, 01:02:36 am by chibievil
Am using rpg maker vxace and am trying to get a script to show custom things, like age, alignment etc.
It's for these scripts: https://bmscripts.weebly.com/advanced-yea-status.html https://bmscripts.weebly.com/actor-alignment.html

Either I am not understanding how to have it added. Or it doesn't work with the scripts I use.
I tried setting the bio via an autorun event, but it doesn't change it. I also used the actor notetags. but it still doesn't change it. Am hurting my brain trying to figure this out.

thanks in advance.

KK20

Can you upload your Scripts.rvdata2? Just makes testing things easier on our end.

Other Projects
RPG Maker XP Ace  Upgrade RMXP to RMVXA performance!
XPA Tilemap  Tilemap rewrite with many features, including custom resolution!

Nintendo Switch Friend Code: 8310-1917-5318
Discord: KK20 Tyler#8901

Join the CP Discord Server!

chibievil

Sure but some of them require images, should I upload them as well? Here is the scripts either way. https://drive.google.com/file/d/1gYrmxWuyc9LDGqt5IDdl4R_89AJkNOCG/view?usp=sharing

KK20

Not now at least.
What do your script calls and notetags look like?

Other Projects
RPG Maker XP Ace  Upgrade RMXP to RMVXA performance!
XPA Tilemap  Tilemap rewrite with many features, including custom resolution!

Nintendo Switch Friend Code: 8310-1917-5318
Discord: KK20 Tyler#8901

Join the CP Discord Server!

chibievil

this is currently the notetags am using
<init title: 1>
<INI_ALIGN: -4>
<age: 22>

I deleted the script calls, cos They wasn't working. but this is what i used:
$game_actors[1].set_custom_bio[1] = "Age: \aage[1]
Alignment: \aal[1]"


this is for the status addon to set custom bio

text =
""Age: \\aage[1] \n"
"Alignment: \\aal[1] \n"
$game_actors[x].description = text


this is for yanfly status core to set bio description.

KK20

Is your problem that your game's Biography write-up doesn't look similar to the screenshot on the website?
Specifically this one: ShowHide

You need to press SHIFT or D (or whatever is Input::Z) to toggle between the written bio ("A veteran warrior who fought on many battlefields...") and the attributes. This is described here:

    #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    # - Switch & Toggle Settings -
    #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    # These are the switches that govern whether or not certain status items will
    # appear and/or will be enabled. By binding them to a Switch, you can just
    # set the Switch ON/OFF to show/hide or enable/disable a status command. If
    # you do not wish to use this feature, set these commands to 0.
    #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    TOGGLE_ICON = 1027 #appears in bottom corner to show you can toggle screens
    TOGGLE_BUTTON = :Z

Other Projects
RPG Maker XP Ace  Upgrade RMXP to RMVXA performance!
XPA Tilemap  Tilemap rewrite with many features, including custom resolution!

Nintendo Switch Friend Code: 8310-1917-5318
Discord: KK20 Tyler#8901

Join the CP Discord Server!

chibievil

Oh god. I didn't realize that was what that did. I am so sorry. Thanks I see it now.