TalonStryk Posted May 25, 2002 Share Posted May 25, 2002 I'm making a single player map, and I had a few questions about how to do somethings 1. How would you make the in game cut scenes, not the cgi movies, but the game-engine rendered sequences before and during missions? 2. How do you change the objective, because all my maps say objectives=none when I hit tab. And how do you change objectives? 3. How would I set what force powers a player starts with at the beginning of a mission? Im thinking these can not be done without the single player sdk, but it never hurts to ask. Thanx Link to comment Share on other sites More sharing options...
Max Death Posted May 25, 2002 Share Posted May 25, 2002 You will need a program for writting scripts. Raven has not released it yet though they have promised to do so. Link to comment Share on other sites More sharing options...
UniKorn Posted May 25, 2002 Share Posted May 25, 2002 I know 2 and 3 can be done without the sdk. Its somewhere on the forums, I know I read it. Just don't know where. Link to comment Share on other sites More sharing options...
TalonStryk Posted May 25, 2002 Author Share Posted May 25, 2002 ty, ill look around for it. Does Raven even plan to release the sdk? EDIT: 25 pages and the search function is disabled, this is going to be a long day. Link to comment Share on other sites More sharing options...
TalonStryk Posted May 25, 2002 Author Share Posted May 25, 2002 Well i found out how to set starting force powers at http://www.lucasforums.com/showthread.php?s=&threadid=54695 but i could fid how to set objectives, does anyone know? Link to comment Share on other sites More sharing options...
Xcom Posted May 26, 2002 Share Posted May 26, 2002 I think you should wait til the GDK v.2 is released so you can make your custom scripts. You see, stuff like showing objectives, defining forces powers, declaring variables should be done in one script which runs directly upon player spawning. Right now we can only use existing Raven's scripts which are designed for specific levels. I can describe how you can show objectives but that would mean that you cannot define force powers in the same script (and vice versa). But, just in case this is how you show an objective (uncompiled script code): set ( /*@SET_TYPES*/ "SET_OBJECTIVE_SHOW", /*@OBJECTIVES*/ "OBJECTIVE_REFERENCE" ); Objective references are defined in objectives.sp file which can be found in base/strip directory (assets1.pk3) set ( /*@SET_TYPES*/ "SET_OBJECTIVE_HIDE", /*@OBJECTIVES*/ "OBJECTIVE_REFERENCE" ); This is how you hide it. set ( /*@SET_TYPES*/ "SET_OBJECTIVE_SUCCEEDED", /*@OBJECTIVES*/ "OBJECTIVE_REFERENCE" ); Mark the objective as succeeded. set ( /*@SET_TYPES*/ "SET_OBJECTIVE_FAILED", /*@OBJECTIVES*/ "OBJECTIVE_REFERENCE" ); Mark as failed. Link to comment Share on other sites More sharing options...
normal Posted May 26, 2002 Share Posted May 26, 2002 In order to create objectives text you'll need to edit /strip/objects.sp, problem with this is, having multiple sp maps with objectives (i mean seperate map packs) will cause.. problems :/ Link to comment Share on other sites More sharing options...
Xcom Posted May 26, 2002 Share Posted May 26, 2002 Originally posted by normal problem with this is, having multiple sp maps with objectives (i mean seperate map packs) will cause.. problems :/ It won't if you make it a MOD. Link to comment Share on other sites More sharing options...
TalonStryk Posted May 26, 2002 Author Share Posted May 26, 2002 Wouldnt modifying objectives.sp cause you data to be "unpure", and not let you play online because the game data files have been altered? I believe ive seen the game auto kick people who have modified base-game pk3 files while trying to play online. Link to comment Share on other sites More sharing options...
Xcom Posted May 26, 2002 Share Posted May 26, 2002 We are talking about SP game and you don't play it on-line. Pure server does not apply here. In Multiplayer game you don't set objectives (AFAIK). Link to comment Share on other sites More sharing options...
TalonStryk Posted May 26, 2002 Author Share Posted May 26, 2002 Ok thank you for your help, i hope raven releases the official scripting stuff soon. Link to comment Share on other sites More sharing options...
volrathxp Posted May 26, 2002 Share Posted May 26, 2002 i hope they do too.... so i can start getting things together for my mod i'm starting up after my current map is completed and out. volrath Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.