trananh404
New member
- Joined
- Sep 26, 2021
- Messages
- 1
- Reputation score
- 0
Is there any brain way to convert through file rvdata2 to json and json to radata2, help me!
View attachment 41677
View attachment 41677
@habisain: As for the Unholy Trinity of Copyright, Trademark and Patent, for all the crime against humanity they currently are, you'd likely need at least several million people to get a positive change there - after all, even the pandemic didn't do it.
im sorry but can you tell me how to use marshal to convert rvdata2...the ignorance. As if this wasn't addressed dozens of times on this forum.
Just google 'ruby marshal format'. The only trick is to provide class definitions for relevant RPG Maker classes.
def self.load_data_file(file)
File.open(file, "rb") do |f|
return Marshal.load(f)
end
end