Originally posted by Veldrin 
 Thanks:)  
 I still need : 
 - inscription into journal 
 - gives exp
 - gaiden light side point
 - gaiden dark side point 
 (later I will write more) 
 - Inscription into journal: I made a tutorial sometime ago. Look at this thread: 
http://www.lucasforums.com/showthread.php?s=&threadid=129333)
 - Give xp: 
 Example for plot xp: (this gives 350xp) 
 void main()
 {
 GivePlotXP("kor35_findingdustil",35);
 } 
 Normal xp (I'm not sure of this one - I don't have nwscript with me to verify the syntax - but if i remember correctly is GiveXPtoCreature and not GiveEXPToCreature - I'll confirm this this when I get home) - the script should give 200 xp, if you write 20, you'll have 20xp - : 
 void main()
 {
 object oPC=GetFirstPC(); 
 GiveXPToCreature(oPC,200);
 } 
 - gain ls or ds points:
 You can simply type the following entries in the script field of a dialog file - no need to add anything else in the override folder - they refer to the game default scripts and it makes a less messy override folder ;) : 
 for ds points:
 k_act_darksml 
 k_act_darkmed
 k_act_darkhigh 
 for ls points:
 k_act_lightghigh
 k_act_lightmed
 k_act_lightsml