├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── distfromfunc.py ├── gamedata_checker.py ├── isgoodsig.py ├── makesig.py ├── makesigfromhere.py ├── nameresetter.py ├── netprop_importer.py ├── sigfind.py ├── sigsmasher.py ├── structfiller.py ├── symbolsmasher.py ├── vtable_io.py └── vtable_structs.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /distfromfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/distfromfunc.py -------------------------------------------------------------------------------- /gamedata_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/gamedata_checker.py -------------------------------------------------------------------------------- /isgoodsig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/isgoodsig.py -------------------------------------------------------------------------------- /makesig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/makesig.py -------------------------------------------------------------------------------- /makesigfromhere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/makesigfromhere.py -------------------------------------------------------------------------------- /nameresetter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/nameresetter.py -------------------------------------------------------------------------------- /netprop_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/netprop_importer.py -------------------------------------------------------------------------------- /sigfind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/sigfind.py -------------------------------------------------------------------------------- /sigsmasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/sigsmasher.py -------------------------------------------------------------------------------- /structfiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/structfiller.py -------------------------------------------------------------------------------- /symbolsmasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/symbolsmasher.py -------------------------------------------------------------------------------- /vtable_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/vtable_io.py -------------------------------------------------------------------------------- /vtable_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scags/IDA-Scripts/HEAD/vtable_structs.py --------------------------------------------------------------------------------