01-28-2009, 01:50 PM
Line 14:
CreateObject has 7 parameters. Presuming the 5th parameter, "8" is a mistake, try:
Line 30:
MoveObject (Pirateship,1908.9828, 543.4374, -0.4981,8,0.5);
Again, with the MoveObject statement, there appears to be an extra param in there, being 8. MoveObject only has 5 params. Presuming its another mistake, remove the 8 and it's fixed
Code:
Pirateship = CreateObject(8493, 1908.9828, 543.4374, -0.4981,8, 0.0000, 0.0000, 0.0000);CreateObject has 7 parameters. Presuming the 5th parameter, "8" is a mistake, try:
Code:
Pirateship = CreateObject(8493, 1908.9828, 543.4374, -0.4981, 0.0000, 0.0000, 0.0000);Line 30:
MoveObject (Pirateship,1908.9828, 543.4374, -0.4981,8,0.5);
Again, with the MoveObject statement, there appears to be an extra param in there, being 8. MoveObject only has 5 params. Presuming its another mistake, remove the 8 and it's fixed
