├── .gitattributes ├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── pawn.json └── v1.4.6 ├── English └── creator.pwn ├── Georgian └── creator.pwn ├── PT-BR └── creator.pwn └── Russian └── creator.pwn /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pwn linguist-language=Pawn 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexiusTailer/Ultimate-Creator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexiusTailer/Ultimate-Creator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexiusTailer/Ultimate-Creator/HEAD/README.md -------------------------------------------------------------------------------- /pawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexiusTailer/Ultimate-Creator/HEAD/pawn.json -------------------------------------------------------------------------------- /v1.4.6/English/creator.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexiusTailer/Ultimate-Creator/HEAD/v1.4.6/English/creator.pwn -------------------------------------------------------------------------------- /v1.4.6/Georgian/creator.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexiusTailer/Ultimate-Creator/HEAD/v1.4.6/Georgian/creator.pwn -------------------------------------------------------------------------------- /v1.4.6/PT-BR/creator.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexiusTailer/Ultimate-Creator/HEAD/v1.4.6/PT-BR/creator.pwn -------------------------------------------------------------------------------- /v1.4.6/Russian/creator.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexiusTailer/Ultimate-Creator/HEAD/v1.4.6/Russian/creator.pwn --------------------------------------------------------------------------------