Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 04/03/2022 in all areas

  1. 1 point
    (enter silly cartoonish image of someone screaming 'YEE-HAW!' whilst popping off their revolver pistols) Yeah, that was it! Merci beaucoup. Now, I'm going to list every change I made otherwise.
  2. 1 point
    I assume trying to put a number between 0 - 1 results in the tag not being read at all? You'll need to adjust the REGEX that looks for the tag~ By default, line #257 contains the REGEX responsible for capturing the tag you've mentioned: InvSizeREGX = /<inv[\s_]+size\s*:\s*(\d+)>/i This REGEX requires ONE or more digit after ":" and nothing else. Putting "." results in an unexpected character appearing, so to speak, so it no longer matches. To fix that, you'll have to adjust it to account the possibility of the "." appearing. For example, if I'm not mistaking, this REGEX: InvSizeREGX = /<inv[\s_]+size\s*:\s*(\d+\.?\d*)>/i should, after ":", expect: ONE or MORE digits then, ZERO or ONE " . " making it optional then, ZERO or MORE digits making it optional So, both <inv_size: 4> and <inv_size: 4.5126> would be matching REGEX, thus be valid. Try changing that line of code to what I suggested and see what happens.
  3. 1 point
    Then you should just need this class Scene_Menu < Scene_MenuBase def command_formation SceneManager.call(Scene_Army) end end
  4. 1 point
    Yay...somebody got it! ...Of course, I should've known you would. Hope all is well in your world! -Stupendous Man Anyhow... Greetings Fellow Creatives, This week I'm releasing two new tracks on my Chiptunes 5 page... "QUIRKY COIN-OP GAMES" "MAIN STREET PIXELVILLE" https://soundimage.org/chiptunes-5/ And one on my Funny 8 page: "CRAZY CHASE" https://soundimage.org/funny-8/ Please don't forget about my Ogg music collections and tracks. They sound great and are a cool way to support my hard work. Donations help a lot, too. Enjoy, stay safe and keep being creative.
×
Top ArrowTop Arrow Highlighted