20.01.2008, 19:26
Quote:
Originally Posted by TheMaTrIx4057
You should add bunch of gates like for airports and all that xD
|
stock CreateGate(gateid,modelid,Float:X,Float:Y,Float:Z, Float:rX,Float:rY,Float:rZ)
{
gateid = CreateObject(modelid,Float:X,Float:Y,Float:Z,Float :rX,Float:rY,Float:rZ);
}
stock MoveGate(gateid,Float:X,Float:Y,Float:Z,Float:Spee d)
{
MoveObject(gateid,Float:X,Float:Y,Float:Z,Float:Sp eed);
}
stock DestroyGate(gateid)
{
DestroyObject(gateid);
}
i made them first but then i made the others
WeeDarr