Author Topic: LFS (looking for script)  (Read 318 times)

Legacy_kuronue bloodlust

  • Full Member
  • ***
  • Posts: 217
  • Karma: +0/-0
LFS (looking for script)
« on: April 13, 2014, 02:41:45 am »


               

just thought we needed one or a link to it here... for instance and I'm working form my own Looking for barkeep script with potions (the booze ones you saw int eh Uber servers it was a simple script potion series adding to embellishing the drunk feature) as well as a on enter script where I can give players an item as well as a journal entry/entrys... things of that nature and if someone knows where it is they can link me or whoever needs help.



               
               

               
            

Legacy_Wensleydale

  • Jr. Member
  • **
  • Posts: 78
  • Karma: +0/-0
LFS (looking for script)
« Reply #1 on: April 15, 2014, 10:37:19 am »


               

This is the script that runs when the PC enters the first area of my not even remotely complete module:



/*   Script generated by
Lilac Soul's NWN Script Generator, v. 2.3

For download info, please visit:
http://nwvault.ign.com/View.php?view=Other.Detail&id=4683&id=625    */

//Put this script OnEnter
void main()
{

object oPC = GetEnteringObject();

if (!GetIsPC(oPC)) return;

int DoOnce = GetLocalInt(oPC, GetTag(OBJECT_SELF));

if (DoOnce==TRUE) return;

SetLocalInt(oPC, GetTag(OBJECT_SELF), TRUE);

CreateItemOnObject("mychestkey", oPC);
AddJournalQuestEntry("Soggy_Bottom", 1, oPC, FALSE, FALSE, FALSE);

}


The script gives the PC the item "mychestkey" and adds the journal entry "Soggy_Bottom". Just modify it as you see fit.


 


Incidentally, if you're not using Lilac Soul's Script Generator, do yourself a favour and download it ASAP. I can't recommend it highly enough, especially for those of us who couldn't code their way out of a wet paper bag.



               
               

               
            

Legacy_kuronue bloodlust

  • Full Member
  • ***
  • Posts: 217
  • Karma: +0/-0
LFS (looking for script)
« Reply #2 on: May 07, 2014, 02:55:26 am »


               

Ok how do I make multiples on journal entry's? repeat the add journal quest with the second journal tag; I will most definitively have to check them out I'm busy working and getting set up for the first server test of my server so having someone I can skype would help.


 


Update: what if I want to make it to where the item is self updating whenever a player enters the server as well?



               
               

               
            

Legacy_zero-feeling

  • Sr. Member
  • ****
  • Posts: 287
  • Karma: +0/-0
LFS (looking for script)
« Reply #3 on: May 24, 2014, 10:25:02 am »


               

i use this for journals


 


http://nwvault.ign.c....detail&id=1166


 


i have a journal editor somewhere for the pqj system (DM tool thingy)


i'll dropbox it here when i find it



               
               

               
            

Legacy_zero-feeling

  • Sr. Member
  • ****
  • Posts: 287
  • Karma: +0/-0
LFS (looking for script)
« Reply #4 on: May 24, 2014, 07:15:16 pm »


               

founf the editor


 


https://www.dropbox....with_editor.zip


 


will keep this up for a while. i found this to be the best journal system so far for people that want an easy to use journal system.