03.12.2012, 18:58
hello so it very easy
add the flowing script
on public OnGameModeInit() now add your mapping
the command
add the flowing script
Код:
new mygate; //
Код:
mygate = CreateObject(980, 1526.11, 2772.92, 12.58, 0.00, 0.00, -89.96); // the gate CreateObject(3749, 1525.15, 2772.92, 15.51, 0.00, 0.00, -90.42); // your map
PHP код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(subcmd, "o", true) == 0 || strcmp(subcmd, "open", true) == 0) // /o OR /open to open the GATE
{
MoveObject(mygate, 1526.1100, 2772.9199, 6.5800, 5);
return 1;
}
if(strcmp(subcmd, "c", true) == 0 || strcmp(subcmd, "close", true) == 0) // /c OR /close to close the GATE
{
MoveObject(mygate, 1526.11, 2772.92, 12.58, 5);
return 1;
}
return 0;
}

