Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Thanks for using my filterscript, if you like my work feel free to +1 reputation to me. :) //ScriptFohLife
- #define FILTERSCRIPT
- #include <a_samp>
- #include <ZCMD>
- #define COLOR_GREY 0xAFAFAFAA
- #define COLOR_PINK 0xFF66FFAA
- #if defined FILTERSCRIPT
- #endif
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" ColorIDs by ScriptFohLife has been loaded.");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- print("\n--------------------------------------");
- print(" ColorIDs by ScriptFohLife has been unloaded.");
- print("--------------------------------------\n");
- return 1;
- }
- CMD:colors(playerid, params[])
- {
- SendClientMessage(playerid, COLOR_GREY, "______________________________________________");
- SendClientMessage(playerid, COLOR_PINK, "Color IDs by ScriptFohLife");
- SendClientMessage(playerid, COLOR_GREY, "* [0=Black] [1=White] [2=Turqouse] [3=Red] [4=DarkGreen] *");
- SendClientMessage(playerid, COLOR_GREY, "* [5=WinePurple] [6=Yellow] [7=Blue] [8=Grey] [9=DarkGrey]*");
- SendClientMessage(playerid, COLOR_GREY, "* [Let's skip 10-120] *");
- SendClientMessage(playerid, COLOR_GREY, "* [121=DarkRed] [122=Grey] [123=Brown] [124=LightRed] *");
- SendClientMessage(playerid, COLOR_GREY, "* [125=DarkBlue] [126=Pink] [127=Black] [128=LightPurple] *");
- SendClientMessage(playerid, COLOR_GREY, "* [129=MediumPurple] [130=DarkPurple] [131=DarkYellow] *");
- SendClientMessage(playerid, COLOR_GREY, "______________________________________________");
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment