ok wow, never realised how powerful wcpedit really is, been usin it to find out which ships will work from Standoff and UE and most of them will work, cept the Drakhri, Sartha, Gratha, Grikath, Hhriss, Jalthi (regular and the fighter one too) , Raptor, cant even see the sabr_bt one (its just black, nothin else, no frame, no nothin), and the Wraith.
got an error mesage this time for the #include wcp, consts, pilots line, here it is:
[,1]HINT: c:\program files\origin systems\secret ops\lib\ doesn't exist
[s1,4] ERROR: could not include file wcp.pas - was not found!
[s1,4] raised in , line 0(call stack: < < < )
here is the code I've written so far
//test mission 1
mission s1;
#SetOutputPath("$wcso$\mission");
#include wcp, consts, pilots;
object Alpha1(Ship)
obj: pantherbl;
x: 0;
y: 100;
z: 0;
main: M_Alpha;
death: D_Alpha;
pilot: PILOT_Amazon;
end;
object Player(Player)
obj: pantherbl;
x: 300;
y: 200;
z: -500;
main: M_Player;
direction: 180, 0, 0;
pilot: PILOT_Casey1;
end;
object Nav1
x: 0
y: 0
z: 0
main: M_Nav1;
navdata: 1, 5000;
end;
object Nav2
x: 10000
y: 10000
z: 10000
main: M_Nav2;
navdata: 2, 5000;
end;
object Belt1(ABStart)
x: 10000;
y: 10000;
z: 10000;
absdata: 2, 500, 10000; //id, objects, diameter
end;
function M_Alpha;
begin
while(1) do
AI_WaitSeconds(5)
end;
function M_Alpha;
begin
SF_SetObjectFlag(OF_alignment, ALIGN_Confed);
SF_ActivateSelf(0);
while(1) do
AI_WaitSeconds(5);
end;
function MAIN;
begin
MS_RunSpaceflight(0);
end;
function M_Player;
begin
SF_SetObjectFlag (OF_alignment,ALIGN_Confed);//sets the player to confed alignment
SF_ActivateSelf(0);
SF_PlayerSwitchToCam(CamID_cockpit,Playe r);//switch to player cockpit
while(1) do begin
AI_WaitSeconds(1);
end;
end;
maybe someone could make a copy of their \lib and send it to me as a zip or something? any help is much appreciated.