Text Scroll Script - Enhanced - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Material Development (https://www.save-point.org/forum-8.html) +--- Forum: Scripts Database (https://www.save-point.org/forum-39.html) +---- Forum: RPGMaker XP (RGSS) Engine (https://www.save-point.org/forum-116.html) +---- Thread: Text Scroll Script - Enhanced (/thread-2557.html) |
Text Scroll Script - Enhanced - DerVVulfman - 03-05-2008 Text Scroll Script - Enhanced
Version 3.0 Based on version: R3 by dubealex (Edit by DerVVulfman) Introduction Based on the Text Scroll Script by dubealex, this Features
Demo The Demo - Box.com link Based on Dubealex's original demo Instructions DEFINITELY in the demo. Credits and Thanks Mainly by dubealex. I modified it to slow the scrolling feature further and add a font changing call. I also used a system by Yeyinde to remove most of the $global variables to reduce the number of memory resources needed. Thanks to MageOne and Ace who requested an option for player cancelling or closing of scrolling windows, and to skye_sken who requested an accurate vertical placement system. Author's Notes I got permission to post it. :) Wouldn't do so otherwise. Text Scroll Script - Enhanced - MarkDarkness - 10-09-2009 Anybody still has this somewhere? Preferably in txt rather than doc... The text import feature seems sweet. Text Scroll Script - Enhanced - Alpha-Mad - 10-09-2009 The word document and demo open just fine. All you need to have is a CA account or Microsoft Word. Anyway, I added a text document attachment so you should be able to open it. Check the format when pasting it in game! DerVVulfman: feel free to add the txt document to your original post if you'd like Text Scroll Script - Enhanced - DerVVulfman - 10-09-2009 Afraid my FileDen file sharing service screws up files with the .txt extension. HOWEVER!!! .... all you have to do is change the file extension from .doc to .txt and you get the script just fine. :cheery: Text Scroll Script - Enhanced - MarkDarkness - 10-10-2009 For whatever reason FileDen gives me "We are sorry, but Fileden cannot currently respond to your request. Please try again later." for every script. :\ Oh well. Thanks for the support, guys! Text Scroll Script - Enhanced - MarkDarkness - 10-10-2009 Why do I keep getting "undefined local variable or method `FILENAME GOES HERE' for # etc" when I call it? What I'm trying: Call Script command: $Book_Scroll.new(missing.txt, 2, 1, 255, 100) Anything wrong there? Text Scroll Script - Enhanced - DerVVulfman - 10-10-2009 You forgot the quotes. $Book_Scroll.new("missing.txt", 2, 1, 255, 100) Oh, and you can use single or double quotes, like this: $Book_Scroll.new('missing.txt', 2, 1, 255, 100) I hear that single quotes (for some reason) use less resources. Dunno if that is true or not. But *heh* whatever works, right? Text Scroll Script - Enhanced - MarkDarkness - 10-11-2009 Weird... now I get this on a blank project: NoMethodError (...) undefined method `new' for nil:NilClass. Text Scroll Script - Enhanced - DerVVulfman - 10-12-2009 My bad. I did a straight copy of what you previously posted and just added the quotes to the filename as needed. The call doesn't have a '$' dollar sign so it should read as: Book_Scroll.new('missing.txt', 2, 1, 255, 100) It is looking for a new method called $Book_Scroll where one does not exist. But if you get rid of the '$', everything should be fine. Text Scroll Script - Enhanced - MarkDarkness - 10-13-2009 Thank you for the support! But... sigh... now it's "Unable to find file Section113:337:in `readlines'Text/missing.txt/2.rxdata". What the hell... I clearly have become boring by now, so maybe I should just let go and try something else. |