├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── client └── cl_main.lua ├── config.lua ├── fxmanifest.lua ├── html ├── bg.png ├── circle.gif ├── crock.ttf ├── js │ ├── jquery-1.4.1.min.js │ ├── jquery-func.js │ ├── jquery.jcarousel.pack.js │ └── listener.js ├── style.css └── ui.html └── server └── sv_main.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/README.md -------------------------------------------------------------------------------- /client/cl_main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/client/cl_main.lua -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/config.lua -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/fxmanifest.lua -------------------------------------------------------------------------------- /html/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/html/bg.png -------------------------------------------------------------------------------- /html/circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/html/circle.gif -------------------------------------------------------------------------------- /html/crock.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/html/crock.ttf -------------------------------------------------------------------------------- /html/js/jquery-1.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/html/js/jquery-1.4.1.min.js -------------------------------------------------------------------------------- /html/js/jquery-func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/html/js/jquery-func.js -------------------------------------------------------------------------------- /html/js/jquery.jcarousel.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/html/js/jquery.jcarousel.pack.js -------------------------------------------------------------------------------- /html/js/listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/html/js/listener.js -------------------------------------------------------------------------------- /html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/html/style.css -------------------------------------------------------------------------------- /html/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/html/ui.html -------------------------------------------------------------------------------- /server/sv_main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedEM-RP/redemrp_identity/HEAD/server/sv_main.lua --------------------------------------------------------------------------------