Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //----------------------------------------------------------------------------------------//
- //------------------------------Credit System By DJTunes----------------------------------//
- //----------------------------------------------------------------------------------------//
- // CREDITS
- // DJTunes - Creating the filterscript
- //----------------------------------------------------------------------------------------//
- #define FILTERSCRIPT // Keep this defined to cause errors
- //----------------------------------------------------------------------------------------//
- //Includes
- #include <a_samp>
- //----------------------------------------------------------------------------------------//
- //Defines
- #if defined FILTERSCRIPT
- //Color Defines
- #define red 0xFF0000AA
- //----------------------------------------------------------------------------------------//
- public OnFilterScriptInit()
- {
- print("\n-----------------------------------------");
- print("Credit System by DJTunes...... LOAD COMPLETED!");
- print("-------------------------------------------\n");
- return 1;
- }
- //----------------------------------------------------------------------------------------//
- public OnFilterScriptExit()
- {
- print("\n-----------------------------------------");
- print("Credit System by DJTunes...... UNLOAD COMPLETED!");
- print("-------------------------------------------\n");
- return 1;
- }
- //----------------------------------------------------------------------------------------//
- //Recommended That You Do Not Do Anything With The Following 2 Lines
- #else
- #endif
- //----------------------------------------------------------------------------------------//
- //This section contains the whole idea of the credit system
- public OnPlayerConnect(playerid)
- {
- SendClientMessage(playerid,0xFF0000AA,"|~Credits~|"); //If you want to make it say something else, and not "|~Credits~|", then you can only edit "|~Credits~|"
- SendClientMessage(playerid,0xFF0000AA,"|~Credit System by DJTunes~|"); //It's recommended, and it'd be really nice if you'd credit me if you're using this filterscript on your server because you're using a release by me.
- SendClientMessage(playerid,0xFF0000AA,"|~EDIT HERE by NAME OF CREATOR~|"); //If you don't want EDIT HERE... showing up enter your custom text between "|~", and the symbols "~|" after the word "CREATOR".
- SendClientMessage(playerid,0xFF0000AA,"|~EDIT HERE by NAME OF CREATOR~|"); //Instructions for changing one line above this
- SendClientMessage(playerid,0xFF0000AA,"|~EDIT HERE by NAME OF CREATOR~|"); //Instructions for changing one line above this
- SendClientMessage(playerid,0xFF0000AA,"|~EDIT HERE by NAME OF CREATOR~|"); //Instructions for changing one line above this
- SendClientMessage(playerid,0xFF0000AA,"|~EDIT HERE by NAME OF CREATOR~|"); //Instructions for changing one line above this
- //If you want to add more credits so you're fair in the game of SA-MP just add the line above this and edit the text (Instructions above)
- return 1;
- }
- //----------------------------------------------------------------------------------------//
- //Credit System made by DJTunes
- //If you find bugs report to me on SA-MP Forums where this topic is located at
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement