30.12.2010, 21:21
(
Последний раз редактировалось XxCozzaxX; 31.12.2010 в 01:02.
)
Okay, thanks very much, I have another issue which is getting on my nerves - probably extremely simple!
This is at the bottom of my code:
And this is in onplayercommandtext;
but i'm getting 'argument type mismatch (argument 1)' on the line;
All of my other dcmd commands work perfectly using the same method.
Regards,
XxCozzaxX
This is at the bottom of my code:
pawn Код:
dcmd_bond(params[])
{
if(lifted == 0)
{
MoveObject(bondlift,268.54293823242,1884.3603515625,16.081565856934,50000.0); //007lift up
lifted = 1;
}
else
{
MoveObject(bondlift,268.70651245117,1884.0992431641,6.9150552749634,50000.0);//007lift down
lifted = 0;
}
return 1;
#pragma unused params
}
pawn Код:
dcmd(bond,4,cmdtext);
pawn Код:
dcmd(bond,4,cmdtext);
Regards,
XxCozzaxX