Not a member of Pastebin yet?
                        Sign Up,
                        it unlocks many cool features!                    
                - // This is a comment
 - // uncomment the line below if you want to write a filterscript
 - //#define FILTERSCRIPT
 - //INCLUDES .INC
 - #include <a_samp>
 - #include <YSI\y_ini>
 - //DEFINES
 - #define DIALOG_REGISTER 1
 - #define DIALOG_LOGIN 2
 - #define DIALOG_SUCCESS_1 3
 - #define DIALOG_SUCCESS_2 4
 - //COLORS
 - #define COL_WHITE "{FFFFFF}"
 - #define COL_RED "{F81414}"
 - #define COL_GREEN "{00FF22}"
 - #define COL_LIGHTBLUE "{00CED1}"
 - //PATH
 - #define PATH "Test/Users/%s.ini"
 - #if defined FILTERSCRIPT
 - public OnFilterScriptInit()
 - {
 - print("\n--------------------------------------");
 - print(" Test Loaded!");
 - print("--------------------------------------\n");
 - return 1;
 - }
 - enum pInfo
 - {
 - pPass,
 - pCash,
 - pAdmin,
 - pKills,
 - pDeaths
 - }
 - new PlayerInfo[MAX_PLAYERS][pInfo];
 - forward LoadUser_data(playerid,name[],value[]);
 - public LoadUser_data(playerid,name[],value[])
 - {
 - INI_Int("Password",PlayerInfo[playerid][pPass]);
 - INI_Int("Cash",PlayerInfo[playerid][pCash]);
 - INI_Int("Admin",PlayerInfo[playerid][pAdmin]);
 - INI_Int("Kills",PlayerInfo[playerid][pKills]);
 - INI_Int("Deaths",PlayerInfo[playerid][pDeaths]);
 - return 1;
 - }
 - stock Test/Users/%s.ini(playerid)
 - {
 - new string[128],playername[MAX_PLAYER_NAME];
 - GetPlayerName(playerid,playername,sizeof(playername));
 - format(string,sizeof(string),PATH,playername);
 - return string;
 - }
 - stock udb_hash(buf[]) {
 - new length=strlen(buf);
 - new s1 = 1;
 - new s2 = 0;
 - new n;
 - for (n=0; n<length; n++)
 - {
 - s1 = (s1 + buf[n]) % 65521;
 - s2 = (s2 + s1) % 65521;
 - }
 - return (s2 << 16) + s1;
 - }
 - public OnFilterScriptExit()
 - {
 - return 1;
 - }
 - #else
 - main()
 - {
 - print("\n----------------------------------");
 - print(" Blank Gamemode by your name here");
 - print("----------------------------------\n");
 - }
 - #endif
 - public OnGameModeInit()
 - {
 - // Don't use these lines if it's a filterscript
 - SetGameModeText("Blank Script");
 - AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
 - return 1;
 - }
 - public OnGameModeExit()
 - {
 - return 1;
 - }
 - public OnPlayerRequestClass(playerid, classid)
 - {
 - SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
 - SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
 - SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
 - return 1;
 - }
 - public OnPlayerConnect(playerid)
 - {
 - if(fexist(Test/Users/(playerid)))
 - {
 - INI_ParseFile(Test/Users/(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
 - ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,""COL_WHITE"Login",""COL_WHITE"Type your password below to login.","Login","Leave!");
 - }
 - else
 - {
 - ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT,""COL_WHITE"Registering...",""COL_WHITE"Type your password below to register a new account.","Register","Quit");
 - }
 - return 1;
 - }
 - public OnPlayerDisconnect(playerid, reason)
 - {
 - return 1;
 - }
 - public OnPlayerSpawn(playerid)
 - {
 - return 1;
 - }
 - public OnPlayerDeath(playerid, killerid, reason)
 - {
 - return 1;
 - }
 - public OnVehicleSpawn(vehicleid)
 - {
 - return 1;
 - }
 - public OnVehicleDeath(vehicleid, killerid)
 - {
 - return 1;
 - }
 - public OnPlayerText(playerid, text[])
 - {
 - return 1;
 - }
 - public OnPlayerCommandText(playerid, cmdtext[])
 - {
 - if (strcmp("/mycommand", cmdtext, true, 10) == 0)
 - {
 - // Do something here
 - return 1;
 - }
 - return 0;
 - }
 - public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
 - {
 - return 1;
 - }
 - public OnPlayerExitVehicle(playerid, vehicleid)
 - {
 - return 1;
 - }
 - public OnPlayerStateChange(playerid, newstate, oldstate)
 - {
 - return 1;
 - }
 - public OnPlayerEnterCheckpoint(playerid)
 - {
 - return 1;
 - }
 - public OnPlayerLeaveCheckpoint(playerid)
 - {
 - return 1;
 - }
 - public OnPlayerEnterRaceCheckpoint(playerid)
 - {
 - return 1;
 - }
 - public OnPlayerLeaveRaceCheckpoint(playerid)
 - {
 - return 1;
 - }
 - public OnRconCommand(cmd[])
 - {
 - return 1;
 - }
 - public OnPlayerRequestSpawn(playerid)
 - {
 - return 1;
 - }
 - public OnObjectMoved(objectid)
 - {
 - return 1;
 - }
 - public OnPlayerObjectMoved(playerid, objectid)
 - {
 - return 1;
 - }
 - public OnPlayerPickUpPickup(playerid, pickupid)
 - {
 - return 1;
 - }
 - public OnVehicleMod(playerid, vehicleid, componentid)
 - {
 - return 1;
 - }
 - public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
 - {
 - return 1;
 - }
 - public OnVehicleRespray(playerid, vehicleid, color1, color2)
 - {
 - return 1;
 - }
 - public OnPlayerSelectedMenuRow(playerid, row)
 - {
 - return 1;
 - }
 - public OnPlayerExitedMenu(playerid)
 - {
 - return 1;
 - }
 - public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
 - {
 - return 1;
 - }
 - public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
 - {
 - return 1;
 - }
 - public OnRconLoginAttempt(ip[], password[], success)
 - {
 - return 1;
 - }
 - public OnPlayerUpdate(playerid)
 - {
 - return 1;
 - }
 - public OnPlayerStreamIn(playerid, forplayerid)
 - {
 - return 1;
 - }
 - public OnPlayerStreamOut(playerid, forplayerid)
 - {
 - return 1;
 - }
 - public OnVehicleStreamIn(vehicleid, forplayerid)
 - {
 - return 1;
 - }
 - public OnVehicleStreamOut(vehicleid, forplayerid)
 - {
 - return 1;
 - }
 - public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
 - {
 - return 1;
 - }
 - public OnPlayerClickPlayer(playerid, clickedplayerid, source)
 - {
 - return 1;
 - }
 
Advertisement
 
                    Add Comment                
                
                        Please, Sign In to add comment