kal 40 Posted March 5, 2012 copy paste this in to the editor: http://pastebin.com/raw.php?i=ZAGPZpFx Problem: you are writing a script and you want to inspect the contents of $game_actors array. The default way to do this in Ace would be something like this: puts $game_actors.inspect Which gets you something like this: Trying to see what is happening here will give you a headache real quick Enter the PP (pretty print) Ruby standard library: pp $game_actors Soooo much better. Note: I did not write this script (it is from the Ruby standard library). I only had to combine two files to one, and change 1 line of code to get it running in Ace. I don't take any credit for this, but it is so useful that I want you guys to know about it. It would be really nice if Enterbrain just included the standard library in Ace so we don't have to do silly workarounds like this but it's better than nothing at all I guess. 2 Share this post Link to post Share on other sites
Griffith_Kun 0 Posted March 5, 2012 Very useful! I always hated sifting through the jibberish to find what I wanted. Admittedly though, Ace made this easier with the ability to use the "Find" command. However, this makes so I don't have to rely on that to be able to read the mess I'm looking at. It would have been nice if it was included by Enterbrain, but we can still just add it to the "original" copy of the starting file, so it's in there for all projects innately. Well done! Share this post Link to post Share on other sites