Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module Setfile
- File.open("tdata.txt", "w+") do |file|
- Marshal.dump("Test", file)
- end
- end
- module Dvar
- Variables = [1,8,7,]
- end
- class Game_Variables
- alias initialize_defvars initialize
- def initialize(*a,&bl)
- initialize_defvars(*a,&bl)
- Dvar::Variables.each do |id| @data[id] = load_data("tdata.txt")
- end
- end
- end
RAW Paste Data