Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Skin changing Filterscript by Audi_Quattrix
- #define FILTERSCRIPT
- #include <a_samp>
- #include <zcmd>
- #include <sscanf>
- #if defined FILTERSCRIPT
- #define RED 0xF81414AA
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print("Skin changing Filterscript by Audi_Quattrix loaded");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- print("\n--------------------------------------");
- print("Skin changing Filterscript by Audi_Quattrix unloaded");
- print("--------------------------------------\n");
- return 1;
- }
- CMD:skin(playerid, params[])
- {
- new id;
- if (sscanf(params, "d", id)) return SendClientMessage(playerid, 0xFF0000AA, "Usage: /Skin [ID]");
- if(id < 0 || id > 299) return SendClientMessage(playerid,RED,"Wrong Skin ID");
- else
- {
- SetPlayerSkin(playerid,id);
- }
- return 1;
- }
- #endif
Advertisement
Add Comment
Please, Sign In to add comment