RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Is there a program in which...

0 Members and 1 Guest are viewing this topic.

*****
Art Master
Rep:
Level 90
Does there happen to be a program for RPG Maker in which searches your projects and lists the resources your not using? I thought that there was something like that around one time. Please post a link or give any info if you can. Thanks =)

********
EXA
Rep:
Level 92
Pikachu on a toilet
Project of the Month winner for April 2007
I found this script somewhere the other day.

Code: [Select]
class Main
  def update
    if $firstrun == true
      $firstrun = false
      $etimekeep = 22*129
      $fontface = "Impact"
      $fontsize = 22
      Graphics.freeze
      $scene = Scene_Title.new
    end
    while $scene != nil
      $scene.main
    end
  rescue Errno::ENOENT
    #p $!.to_s    Enable this line if you want to be notified when it runs.
    filename = $!.message.sub("No such file or directory - ", "")
    $dest = "C:/RMXPgame/" + filename
    slashes = $dest.count "/"
    loop do # Truncates the end of the string at the slash
      $dest = $dest.chop
      slashe = $dest.count "/"
      if slashes != slashe
        $dest = $dest + "/"
        break
      end
    end
    t = 0
    loop do
      newfileloc = "C:/RMXPbackup/" + filename
      t +=1
      case t
      when 1
       newfileloc += ".mp3"
      when 2
        newfileloc += ".wav"
      when 3
        newfileloc += ".ogg"
      when 4
        newfileloc += ".mid"
      when 5
        newfileloc += ".jpg"
      when 6
        newfileloc += ".png"
      when 7
        newfileloc += ".bmp"
      end
      if FileTest.exist?( newfileloc ) == true
        FileUtils.mv(newfileloc, $dest)
        break
      end
    end
  end
end
$firstrun = true
while $scene != nil
  $scene.main
end
$main = Main.new
while $main != nil
  $main.update
  break if $scene.nil?
end

But you need the FileUtils.rb as well. Just google for it.
Get King of Booze for Android, for iOS, for OUYA or for Windows!
Visit our website.
You can also love/hate us on Facebook or the game itself.


Get DropBox, the best free file syncing service there is!