31.07.2018, 11:52
Put This OnGamemodeinit
and then this is kind of define put on the top
Now Paste this as a separate place not in the ongamemodeinit lol empty place
Look Like This
PHP код:
public OnGameModeInIt()
{
object = CreateObject(19360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
}
PHP код:
new object;
PHP код:
cmd:test(playerid, params[])
{
EditObject(playerid, object);
SendClientMessageEx(playerid, COLOR_GRAY, "TESTING");
return 1;
}
Look Like This
PHP код:
new object;
PHP код:
public OnGameModeInIt()
{
object = CreateObject(19360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
}
PHP код:
cmd:test(playerid, params[])
{
EditObject(playerid, object);
SendClientMessageEx(playerid, COLOR_GRAY, "TESTING");
return 1;
}