01.09.2011, 09:13
Everything about this thread.
You don't explain what anything does. You tell people to copy from pastebin. And the code there would bug a mode.
EG,
Read the comments.
This will mess class selection up.
The script is either a gamemode or a filterscript not both. So you should edit the code accordingly. Remove any callbacks/code that are not used.
You don't explain what anything does. You tell people to copy from pastebin. And the code there would bug a mode.
EG,
Read the comments.
pawn Код:
public OnGameModeInit()
{
// Don't use these lines if it's a filterscript <<
SetGameModeText("Blank Script");// this will change the mode text to "blank script"
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);//adds another cj class to the mode messing classes up
return 1;
}
pawn Код:
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;
}


