Levi Stepp 12 Posted January 5, 2013 (edited) [LDS] Save Screen Version: 1.0 Creator ~Levi Stepp~ History 1/5/2013 : Date Created IntroductionThis is just a basic Save Screen that draws a few things.Features Actor Faces Location Name Playtime 6 Party Member Save File Screenshots How to Use Place this script above â–¼ Main Process, and below â–¼ Materials. There is no config at the moment. DemoNo demo is needed, Plug N' Play. ScriptGet it Here FAQ No Questions asked yet. If you have suggestions, let me know. I am still learning RGSS3, I don't know how to make custom configures for people yet. Edited October 26, 2013 by Levi Stepp 1 Virus reacted to this Share this post Link to post Share on other sites
pinka 7 Posted January 5, 2013 Got an error at line 176: return [@actors.size, 6].min says undefined method 'size' Share this post Link to post Share on other sites
DooMAGE 0 Posted January 5, 2013 Same problem here. Share this post Link to post Share on other sites
Snake 4 Posted January 5, 2013 Then you made a mistake. Got it to work without a problem btw with mistake i mean: my line 176 is : #-------------------------------------------------------------------------- So i think you inserted the script slighlty wrong. Share this post Link to post Share on other sites
Ventwig 25 Posted January 5, 2013 This looks great! Share this post Link to post Share on other sites
Levi Stepp 12 Posted January 5, 2013 (edited) Then you made a mistake. Got it to work without a problembtw with mistake i mean: my line 176 is : #-------------------------------------------------------------------------- So i think you inserted the script slighlty wrong. Strange, maybe pastebin overlapped something? I'll try re-uploading the script. Got an error at line 176: return [@actors.size, 6].min says undefined method 'size' Did you try it in a fresh project? What other scripts are you using. Edit: Re-uploaded the script, when clicking the link, try clicking CTRL+A to select all, then CTRL+C to copy just in case. Edited January 5, 2013 by Levi Stepp Share this post Link to post Share on other sites
Hytporsche 10 Posted January 8, 2013 I am also getting - Got an error at line 176: return [@actors.size, 6].min says undefined method 'size' Your save screen script is not in the list, because i couldn't run it of course. I had your script placed at the very top and the very bottom and stil.. gave me the error. My Scripts: Share this post Link to post Share on other sites
Levi Stepp 12 Posted January 8, 2013 I am also getting - Got an error at line 176: return [@actors.size, 6].min says undefined method 'size' Your save screen script is not in the list, because i couldn't run it of course. I had your script placed at the very top and the very bottom and stil.. gave me the error. My Scripts: I'm not too sure, but it might be incompatible with Yanfly's party system. and if it is, I'm still kind of new with RGSS3, Try placing the script in a fresh project and tell me if it works. Until I learn how to make compatible stuff I'll have to downgrade the script later. Share this post Link to post Share on other sites
Hytporsche 10 Posted January 8, 2013 I'm not too sure, but it might be incompatible with Yanfly's party system.and if it is, I'm still kind of new with RGSS3, Try placing the script in a fresh project and tell me if it works. Until I learn how to make compatible stuff I'll have to downgrade the script later. Well, I did try a fresh project after i posted and yes it did work just fine. Look quite well i might add But, I just took out Yanfly's party system and it still gave me the same error. I will start taking away scripts to help find the incompatible script with yours. Share this post Link to post Share on other sites
ashes999 13 Posted September 1, 2014 I, too, get the same error. One thing to note: you have a bunch of clauses like: return if @actors.empty? || @actors.nil? If @actors really is nil, this will crash, because the .empty? call is evaluated first on a nil variable. You need to reverse it, like so: return if @actors.nil? || @actors.empty? Share this post Link to post Share on other sites
Halfmoon Media 2 Posted September 22, 2014 (edited) I'm still having the exact same problem, haven't been able to identify the culprit yet... It's still Line 176, "Undefined method for size" Edited September 22, 2014 by Halfmoon Media Share this post Link to post Share on other sites
zizonlu 0 Posted May 20, 2019 you said it shows location name,but it doesnt Share this post Link to post Share on other sites
roninator2 188 Posted May 22, 2019 On 5/20/2019 at 12:26 PM, zizonlu said: you said it shows location name,but it doesnt yes it does You have to put a name in the display name for the map. If it is blank, then nothing will show up for the name. Share this post Link to post Share on other sites