- Joined
- Nov 19, 2014
- Messages
- 13
- Reaction score
- 2
- Trophies
- 0
- Age
- 38
- Location
- Clearfield, Pennsylvania
- Website
- www.listentoaboss.tk
- XP
- 67
- Country


you can edit the _buildscript.py python script to automatically name them ".bin", just editDon't forgot to change bnr and icn to bin
import os,sys
execfile("AppData.txt")
icn=open("icon.icn","wb")
bnr=open("banner.bnr","wb")
import os,sys
execfile("AppData.txt")
icn=open("icon.bin","wb")
bnr=open("banner.bin","wb")
you can edit the _buildscript.py python script to automatically name them ".bin", just edit
toCode:import os,sys execfile("AppData.txt") icn=open("icon.icn","wb") bnr=open("banner.bnr","wb")
Code:import os,sys execfile("AppData.txt") icn=open("icon.bin","wb") bnr=open("banner.bin","wb")
or you can edit the build script to load the .bnr and .icn, either way works and saves any manual renaming
How come my changes never take effect? The _buildscript.py dumps the banner.bnr and the icon.icn but when I check them they icon is still the "3dBrew" and the banner is still "Drunken Coders". I've done this a bunch and it's always the same.......Don't forgot to change bnr and icn to bin

