10.09.2012, 23:47
The problem is that it's from a CNR game-mode, here, I'll post it:
I'm not trying to ruin your script or anything, am just simply pointing this out.
I uploaded the SFCRRPG.pwn for further proof.
Code:
//////////////////////////////////////////////////////////////////////////////// /* San Fierro Cops-Robbers-RPG v1.1 {2012} Created by Stevo127. All credits are given where they are needed. I was inspired to create this script due to the little number of San Fierro C'n'R scripts out there in SA-MP. As a side note: I didn't make commands like /cuff and /rape find the nearest players because i think that attracts the use of Keybinds. Which i don't allow in servers because it is unfair to use them. Enjoy the Gamemode and please give credits to me if you use it. Credits: CRRPG {Site: www.crrpg.co.uk} For enspiring me to make some of the skills/classes in this script. Y-Less for sscanf. Dracoblue for dudb && dcmd. Cuerv0 for the roadblocks script. Creator of xObjects. BM[UK] for the checkpoint streamer. CHANGELOG v1.1 - NEW IRC OPTIONS, IF YOU WISH TO TURN IRC OFF, change #define IRC_USE from TRUE to FALSE - The server name, abbreviation and version are now set as defines, search for '#define sname' to find these. - SSCANF has been updated to the new most stable version. - The server website is now changeable through searching for '#define sweb'. */ //////////////////////////////////////////////////////////////////////////////// #include <a_samp> #include <irc> #include <SFCRRPGdudb> #include <streamer> #include <dprops> #include <sscanf2> #include <time> #pragma tabsize 0 #pragma unused strtok //============================================================================== ////////////////////////////////// SERVER OPTIONS ////////////////////////////// //Version #define sversion "1.1" #define sabbv "SFCRRPG" #define svname "San Fierro Cops-Robbers-RPG" #define sweb "www.sfcrrpg.com" //IRC OPTIONS #define USE_IRC true // 1st Echo Bot #define BOT_1_NICKNAME "BACON" #define BOT_1_REALNAME "SA-MP Bot" #define BOT_1_USERNAME "SFCRRPG" // 2nd Echo Bot #define BOT_2_NICKNAME "EGGS" #define BOT_2_REALNAME "SA-MP Bot" #define BOT_2_USERNAME "SFCRRPG" //All bots password #define IRC_BOT_PASSWORD "lmaocheese123" // Admin Echo Bot (3rd) #define BOT_3_NICKNAME "CHIPS" #define BOT_3_REALNAME "SA-MP Bot" #define BOT_3_USERNAME "SFCRRPG" //Admin Channel password #define IRC_ADMINCHANNEL_PASSWORD "BeansOnToast" #define IRC_SERVER "irc.server.com" #define IRC_PORT (6667) #define IRC_CHANNEL "#SFCRRPG" #define IRC_ADMINCHANNEL "#SFCRRPG.OPER" #define MAX_BOTS (3)
I uploaded the SFCRRPG.pwn for further proof.