├── README.md ├── configs └── eItems.cfg ├── include └── eItems.inc └── scripting ├── ItemLog_eItems.sp ├── eItems.sp └── files ├── client.sp ├── config.sp ├── forwards.sp ├── func.sp ├── globals.sp ├── natives.sp └── parse.sp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quasemago/eItems/HEAD/README.md -------------------------------------------------------------------------------- /configs/eItems.cfg: -------------------------------------------------------------------------------- 1 | "eItems" 2 | { 3 | "Language" "en" 4 | } 5 | -------------------------------------------------------------------------------- /include/eItems.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quasemago/eItems/HEAD/include/eItems.inc -------------------------------------------------------------------------------- /scripting/ItemLog_eItems.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quasemago/eItems/HEAD/scripting/ItemLog_eItems.sp -------------------------------------------------------------------------------- /scripting/eItems.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quasemago/eItems/HEAD/scripting/eItems.sp -------------------------------------------------------------------------------- /scripting/files/client.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quasemago/eItems/HEAD/scripting/files/client.sp -------------------------------------------------------------------------------- /scripting/files/config.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quasemago/eItems/HEAD/scripting/files/config.sp -------------------------------------------------------------------------------- /scripting/files/forwards.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quasemago/eItems/HEAD/scripting/files/forwards.sp -------------------------------------------------------------------------------- /scripting/files/func.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quasemago/eItems/HEAD/scripting/files/func.sp -------------------------------------------------------------------------------- /scripting/files/globals.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quasemago/eItems/HEAD/scripting/files/globals.sp -------------------------------------------------------------------------------- /scripting/files/natives.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quasemago/eItems/HEAD/scripting/files/natives.sp -------------------------------------------------------------------------------- /scripting/files/parse.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quasemago/eItems/HEAD/scripting/files/parse.sp --------------------------------------------------------------------------------