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, 4, 0, 25, 30, 0, 0); AddPlayerClass(102, 1958.3783, 1343.1572, 15.3746, 269.1425, 5, 0, 22, 100, 32, 50); return 1; AddStaticVehicle(565,1528.7856,-811.6795,71.5422,93.1689,53,53); return 2; }
Originally Posted by Kjetil
Well, now the problem is that when I add it to the script, I get an error.
Код:
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, 4, 0, 25, 30, 0, 0); AddPlayerClass(102, 1958.3783, 1343.1572, 15.3746, 269.1425, 5, 0, 22, 100, 32, 50); return 1; AddStaticVehicle(565,1528.7856,-811.6795,71.5422,93.1689,53,53); return 2; } |
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, 4, 0, 25, 30, 0, 0);
AddPlayerClass(102, 1958.3783, 1343.1572, 15.3746, 269.1425, 5, 0, 22, 100, 32, 50);
AddStaticVehicle(565,1528.7856,-811.6795,71.5422,93.1689,53,53);
return 1;
}
Originally Posted by Anarkien
Quote:
pawn Код:
|