Difference between revisions of "Abducted story"

From XStoryPlayer Wiki
Jump to: navigation, search
Line 3: Line 3:
 
An important part of this chapter describes how to get the character to do a (sexual) task.
 
An important part of this chapter describes how to get the character to do a (sexual) task.
  
==Info==
+
===What was added to the story===
  
 
<ol>
 
<ol>

Revision as of 15:03, 21 January 2015

We added some extra code to finish the abducted story. We will walk over the important parts of the code in this chapter.
It is not really a tutorial, but it is worth reading to gain more knowledge about modding.
An important part of this chapter describes how to get the character to do a (sexual) task.

What was added to the story

  1. First copy the complete pack_abducted directory from the 'Tutorial resource pack' to your ./pack directory. You may want to rename your own pack directory from the previous tutorials in order to keep the results. Now start the story from the beginning and play it to the end.
  2. You will notice that several elements have been added:
    • The alien girl reacts to your penis being shown.
    • The alien girl opens the door.
    • The alien girl gets into a blowjob pose.
    • The alarm is sounded when you try to escape.
    • The alien girl start coughing when you eject in her mouth.
  3. Most (90%) of the code has been added to the run.dat files for both the player and the alien girl.
    There are also some small changes to some other files, but if you followed the previous tutorials it should be pretty clear what these changes are.

The alien girl reacts to your penis being shown

  1. Open the /init/story/alien/brain/run.dat file.
  2. Take a look at the WAIT_REACTION state.
    [state.dyn.me.avatar.penis_mode > 0]
    {      
      SetFocusElem(PENIS);
     
      do_set_timer(5);
     
      state.dyn.me.do.state2 = SEE_PENIS;
      return;
    }

    When the avatar (player) its penis_mode is larger than 0 (3 = erected), the alien girl focuses on the penis and goes into SEE_PENIS state.

Abducted story1.jpg