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.
LFS (looking for script)
#1
Posté 13 avril 2014 - 01:41
#2
Posté 15 avril 2014 - 09:37
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.
#3
Posté 07 mai 2014 - 01:55
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?
#4
Posté 24 mai 2014 - 09:25
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
#5
Posté 24 mai 2014 - 06:15
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.





Retour en haut






