Save-Point
Auto-credits - Printable Version

+- Save-Point (https://www.save-point.org)
+-- Forum: Archives (https://www.save-point.org/forum-105.html)
+--- Forum: Creation Asylum Archives (https://www.save-point.org/forum-90.html)
+---- Forum: Scripts & Code Snippets (https://www.save-point.org/forum-92.html)
+----- Forum: RPG Maker XP Code (https://www.save-point.org/forum-93.html)
+----- Thread: Auto-credits (/thread-6958.html)



Auto-credits - corbaque - 11-23-2006

This is a locked, single-post thread from Creation Asylum. Archived here to prevent its loss.
No support is given. If you are the owner of the thread, please contact administration.


Just put this after or befor your script, a text will appear with the description :
Code:
file = File.open("Name_of_script - Autor.txt", "w"); file.write("description"); file.close

If you want to put it in a section :
Code:
Dir.mkdir("Scripts") if Dir["Scripts"] != ["Scripts"]
file = File.open("Scripts/Name_of_script - Autor.txt", "w"); file.write("description"); file.close

Concentrate and discret, you can use it with a file test, for be sure of validity of credits.

Enjoy it !