08.04.2012, 03:24
Код:
#include <dini>
In OnGameModeInit :
if(!fexist("score.ini")) dini_Create("score.ini");
In OnPlayerDisconnect :
dini_IntSet("score.ini",PlayerName(playerid),GetPlayerScore(playerid));
Код:
new gangzone1;
new gsfzone;
public OnGameModeInit()
{
gsfzone = GangZoneCreate(2220.3711,-1937.0173,2737.8306,-1372.4310);
// 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 OnFilterScriptInit()
{
gsfzone = GangZoneCreate(2220.3711,-1937.0173,2737.8306,-1372.4310);
return 1;
}
public OnPlayerConnect(playerid)
{
GangZoneShowForPlayer(playerid,gsfzone,0x00C714AA);
return 1;
}

