20.10.2009, 00:35
Quote:
|
Originally Posted by kman
so ima trying to make an elevator out of a heli landing pad but i dont know the object id i search samp wiki couldnt find it unless its called heliport also is this right format in this case
Код:
public OnGameModeInit()
{
new obj;
obj = CreateObject(980,0,0,0,0,0,0);
return 1;
}
public OnPlayerCommandText()
{
if(strcmp(cmdtext, "/moveobject", true) == 0)
{
MoveObject(obj, 0, 0, 10, 2.00 );
return 1;
}
return 0;
|
and u got a pic of the object u need?
cuz i dunno what u want exactly.

