Commonly Asked Neverwinter Scripting Questions

Total Page:16

File Type:pdf, Size:1020Kb

Commonly Asked Neverwinter Scripting Questions COMMONLY ASKED QUESTIONS. – By David Gaider (BIOWARE) COMPILED BY: Elmer The Destroyer (AKA Preston M.) Last Updated: Tuesday, July 02, 2002 I felt this document could help some people out it’s actually a post but this is a bit more readable and printable. This was taken verbatim from the sticky post on the NWN website. I did this in a couple minutes sorry if its not perfect o Animations o Waypoints o The userdefined event is your friend o Creating objects o Rewarding gold and XP o Making skill checks o Making unique items o Finding an object o Setting variables o A simple example quest dialogue o How do I make NPC’s initiate dialogue on their own o Using the Trigger Method for starting a Conversation o How do I make my NPC attack the PC he is talking to? o Using module events o Module Event List I know that there are plans to post some more scripting information for you all to digest. For the moment, however, there are some basic questions that seem to be commonly repeated in the forum. I'm going to post some information I put up previously on the NWVault scripting forum found at this site as well as some other basic stuff for people to peruse. ---------- If you see a question that gets repeated a lot or a problem that comes up a lot that bears notice here, please send me a message and I will get it up, here. When the official information is put up, then this thread can be removed. NOTE: Should I make an error somewhere (god forbid ) or if something is not very clear in its wording, please let me know. 1 REGARDING ANIMATIONS You basically have two choices when adding animations to your creatures in the game. Adding them directly or using the automatic functions in the generic AI. Adding Animations Directly The first thing to realize when you are dealing with scripting animations is that not all creatures have all animations. As a rule of thumb, if the creature is a PC race (human, elf, dwarf, half-orc, gnome or halfling), then it will have all the animations. If the creature is a humanoid monster (bugbear, goblin, etc.) then very likely it has most if not all animations. Non-humanoid monsters and especially birds will be very limited in their animations. The Action Queue The second thing to know when scripting animations is how to use the action queue. There are a number of scripting commands which start with the word 'Action'... when a creature calls these commands on themselves, it places the action into a queue. It will finish one action completely and then move onto the next in line... up until the point there are no more actions or a ClearAllActions() command is issued. The reason this is important is that there are two main commands that deal with animations: ActionPlayAnimation and just PlayAnimation. ActionPlayAnimation places the command to perform the animation in the queue... PlayAnimation tells the creature to do the animation immediately as soon as it is reached in the script, overriding anything else going on in the queue. If I wanted to script someone to move to a particular waypoint and then meditate for 6 seconds, it would look like this: NWScript: void main() { object oTarget = GetNearestObjectByTag("WAYPOINT1"); ActionMoveToObject(oTarget); ActionPlayAnimation(ANIMATION_LOOPING_MEDITATE, 1.0, 6.0); } 2 The creature would then move to the waypoint and wait until he got there before he began playing his meditation animation. If I wanted to set a variable when he was finished all that, I would also have to add it into the queue. You can do this with the ActionDoCommand(). This places a non-Action command into the queue. NWScript: void main() { object oTarget = GetNearestObjectByTag("WAYPOINT1"); ActionMoveToObject(oTarget); ActionPlayAnimation(ANIMATION_LOOPING_MEDITATE, 1.0, 6.0); ActionDoCommand(SetLocalInt OBJECT_SELF, "Done_Meditation", 1); } If I did the SetLocalInt command without putting it into the queue, then it would fire as soon as that point in the script was reached... probably well before the creature even reached the waypoint. The two commands for animations are as follows: void ActionPlayAnimation (int nAnimation, float fSpeed=1.0, float fSeconds=0.0) - The 'nAnimation' is Constant for the animation being played. - 'fSpeed' is the speed at which the animation is played... you could have a creature turn its head very slowly or very quickly, for instance... 1.0 is normal speed. - 'fSeconds' is only used for looping animations (like the meditation)... it determines how long you wish the animation to be played. If left blank on a looping animation, it will play that animation until told to do something else. void PlayAnimation (int nAnimation, float fSpeed=1.0, float fSeconds=0.0) As mentioned, this is the same as the ActionPlayAnimation command, except that the animation is not placed in the queue... it is played immediately. Animation Constants You can find a list of all the animation constants (used in the 'nAnimation' portion of the command) by selecting the 'Constants' button in your script editor... all the constants begin with ANIMATION_*. 3 There are two types of animations: 'fire-and-forget' (or FNF), which only plays once and no duration is needed, and 'looping' which play as long as needed and a duration is required for. A reminder once again: NOT ALL MODELS HAVE ALL ANIMATIONS. Just to mention, too, that the animations listed in the constants are not every animation that a model is capable of (there is a dying animation, after all, as well as combat animations and others)... this is just the current list of the ones that can be played via script. (continued from above) Using Generic AI Animations For a quick and easy solution to adding some life to your placed creatures, the generic AI has two functions that you can use. In the generic OnSpawn script ("nw_c2_default9"), there is a whole list of commands that are all commented out (they are preceded with a '//' double slash that colors them green and prevents them from being compiled). To use the built- in animations, you simply need to comment back in (remove the '//') one of the following commands: NWScript: SetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS); SetSpawnInCondition(NW_FLAG_IMMOBILE_AMBIENT_ANIMATI ONS); Don't worry about the comments that are on the same line with these commands... that just tells what they do. Simply erase the double-slash at the beginning of the line. Then you re-compile the script and save it as a different file. And that's it... that's all you have to do. What do these do? Basically they are called in the OnHeartbeat event (meaning the script will 'activate' every 6 seconds). The script checks to make sure that the creature is not asleep, not in combat, not in conversation and no enemy is in sight... if all those are okay, it plays the animations. 4 'ambient animations' means that the creature will move about randomly, occasionally stopping to turn to nearby friends (creatures with a friendly reputation) and play what social animations it has (and, yes, this will work on any type of creature.. it will do what it can for those creatures who don't have the full range). 'immobile ambient animation' does the same thing... without the random movement. The creature stays in place. So you can put down several of these types of creatures, for instance, and they will turn to each other at random intervals and seem to chat, laugh, argue... and even mill around and mingle, with the ambient animations. Do the placeable object animations work the same way? Yes. You can tell a chest to open by having it run its ANIMATION_PLACEABLE_OPEN, or a lamp post to turn off using ANIMATION_PLACEABLE_DEACTIVATE. A few things to keep in mind: 1) For placeable objects that are sources of illumination (such as the lamp post), it is not enough to just use its ANIMATION_PLACEABLE_DEACTIVATE or ANIMATION_PLACEABLE_ACTIVATE. That just affects the glowing part of the animation, itself. You must also use the SetPlaceableIllumination command set to TRUE and tell the area it's in to RecomputeStaticLighting. The following is an example of placeable illumination use: NWScript: // will turn the lightable object on and off when selected // placed in its OnUsed event void main() { if (GetLocalInt (OBJECT_SELF,"NW_L_AMION") == 0) { SetLocalInt (OBJECT_SELF,"NW_L_AMION",1); PlayAnimation (ANIMATION_PLACEABLE_ACTIVATE); SetPlaceableIllumination (OBJECT_SELF, TRUE); RecomputeStaticLighting (GetArea(OBJECT_SELF)); } else { SetLocalInt (OBJECT_SELF,"NW_L_AMION",0); PlayAnimation (ANIMATION_PLACEABLE_DEACTIVATE); SetPlaceableIllumination (OBJECT_SELF, FALSE); RecomputeStaticLighting (GetArea(OBJECT_SELF)); 5 } } 2) Doors are not placeable objects. First thing you should know about them is that if the door is unlocked, a creature who is told to move to a point on the other side of one will automatically open it. Bayond that, the commands for doors are as follows: - ActionOpenDoor: If used in the script of a creature, it will move to the door and open it (if it is unlocked). If used in the script of the door (or the command is sent to the door object via AssignCommand), then the door will open itself. - ActionCloseDoor: As above, only the door is closed. - ActionLockObject: If used in the script of a creature, it will move to the object (can be a door or placeable) and attempt to use its Open Locks skill to unlock it. ONLY call it in the script of a creature! - ActionUnlockObject: As above, except the door or object is unlocked. - SetLocked: This is the command you use if you want a door or object to be set to locked or unlocked without the aid of a creature or skill. If 'bLocked' is set to TRUE, the object will be locked..
Recommended publications
  • NWN Community Expansion Project Pack V2.0
    NWN Community Expansion Project Pack v2.0 Bioware-CEP forums: http://nwn.bioware.com/forums/viewforum.html?forum=83 CEP Website: http://cepteam.dyndns.org/forums/index.php Introduction Welcome to the Community Expansion Pack (CEP) version 2.0! After a long and twisted road you finally have in your hands on the most up to date collection of community work for NWN. I’m sure what you create with this content will far exceed anything we have imagined! For those of you who are new to the CEP, let me take a moment to describe its contents. This is a collection of hak packs from the previous six years of custom content, designed to work with BioWare's Neverwinter Nights. These hak packs have been grouped and modified to work together for the betterment of the NWN community as a whole. You’ll find some of the best and most popular work available for NWN. Please join me and the rest of the CEP Team in thanking every person who has created this content for the community’s use. Now, the CEP Team hasn't just sat back and mashed these haks into one huge collection of material. As you look through the content you’ll notice model, animation and texture corrections, new scripts, and completely new content unique to the CEP itself. All of this has been designed to work alongside the official content of Neverwinter Nights and all patch updates by BioWare; so you will be able to enjoy their high quality with as little fuss as possible.
    [Show full text]
  • It Is in the Area Properties That You Can Customize an Area
    THE BUILDERS PROJECT’S GUIDE TO BUILDING *** THE AURORA TOOLSET MANUAL VERSION 1.06 TABLE OF CONTENTS CHAPTER 1 USING THE TOOLSET.......................................................................................................................11 1.1 THE TOOLSET WINDOWS ....................................................................................................................... 11 1.1.1 The Module Structure Window.............................................................................................................. 11 1.1.2 The Main View Window ........................................................................................................................ 12 1.1.3 The Palette............................................................................................................................................. 13 CHAPTER 2 MODULES .............................................................................................................................................16 2.1 CREATING A NEW MODULE ................................................................................................................... 16 2.2 THE PROPERTIES OF A MODULE............................................................................................................. 20 2.2.1 The Basic Properties of a Module......................................................................................................... 20 2.2.2 The Events Properties of a Module......................................................................................................
    [Show full text]
  • Adapting a Commercial Role-Playing Game for Educational Computer Game Production
    Adapting a Commercial Role-Playing Game for Educational Computer Game Production M. Carbonaroa, M. Cutumisub, H Duffa, S. Gillisc, C. Onuczkob, J. Schaefferb, A. Schumacherb, J. Siegelb, D. Szafronb, and K. Waughb aFaculty of Education, University of Alberta, Edmonton, AB, Canada T6G 2G5 bDepartment of Computing Science, University of Alberta, Edmonton, AB, Canada T6G 2E8 cEdmonton Catholic Schools, 9807 – 106 Street, Edmonton, AB, Canada T5K 1C2 a{mike.carbonaro, hduff} @ualberta.ca, b,c{meric, sgillis, onuczko, jonathan, schumach, siegel, duane, waugh}@cs.ualberta.ca KEYWORDS (1991) described as "flow." They contend that the Generative design patterns, scripting languages, code scaffolded learning principles employed in modern video generation, computer games, educational games. games create the potential for participant experiences that are personally meaningful, socially rich, essentially experiential ABSTRACT and highly epistemological (Bos, 2001; Gee, 2003; Halverson, 2003). Furthermore the design principles of Educational games have long been used in the classroom to successful video games provide a partial glimpse into add an immersive aspect to the curriculum. While the possible future educational environments that incorporate technology has a cadre of strong advocates, formal reviews what is commonly referred to as “just in time /need to know” have yielded mixed results. Two widely reported problems learning (Prensky, 2001; Gee, 2005). with educational games are poor production quality and monotonous game-play. On the other hand, commercial non- Unfortunately, educational game producers have not had educational games exhibit both high production standards much success at producing the compelling, immersive (good artwork, animation, and sound) and diversity of game- environments of successful commercial games (Gee, 2003).
    [Show full text]
  • Viewed, Quest Patterns in Scriptease Provide the Most Functionality
    University of Alberta Quest Patterns for Story-Based Video Games by Marcus Alexander Trenton A thesis submitted to the Faculty of Graduate Studies and Research in partial fulfillment of the requirements for the degree of Master of Science Department of Computing Science © Marcus Alexander Trenton Fall 2009 Edmonton, Alberta Permission is hereby granted to the University of Alberta Libraries to reproduce single copies of this thesis and to lend or sell such copies for private, scholarly or scientific research purposes only. Where the thesis is converted to, or otherwise made available in digital form, the University of Alberta will advise potential users of the thesis of these terms. The author reserves all other publication and other rights in association with the copyright in the thesis and, except as herein before provided, neither the thesis nor any substantial portion thereof may be printed or otherwise reproduced in any material form whatsoever without the author's prior written permission. Examining Committee Duane Szafron, Computing Science Jonathan Schaeffer, Computing Science Mike Carbonaro, Faculty of Education Abstract As video game designers focus on immersive interactive stories, the number of game object interactions grows exponentially. Most games use manually- programmed scripts to control object interactions, although automated techniques for generating scripts from high-level specifications are being introduced. For example, ScriptEase provides designers with generative patterns that inject commonly-occurring interactions into games. ScriptEase patterns generate scripts for the game Neverwinter Nights. A kind of generative pattern, the quest pattern, generates scripting code controlling the plot in story-based games. I present my additions to the quest pattern architecture (meta quest points and abandonable subquests), a catalogue of quest patterns, and the results of two studies measuring their effectiveness.
    [Show full text]
  • Current AI in Games: a Review
    This may be the author’s version of a work that was submitted/accepted for publication in the following source: Sweetser, Penelope & Wiles, Janet (2002) Current AI in games : a review. Australian Journal of Intelligent Information Processing Systems, 8(1), pp. 24-42. This file was downloaded from: https://eprints.qut.edu.au/45741/ c Copyright 2002 [please consult the author] This work is covered by copyright. Unless the document is being made available under a Creative Commons Licence, you must assume that re-use is limited to personal use and that permission from the copyright owner must be obtained for all other uses. If the docu- ment is available under a Creative Commons License (or other specified license) then refer to the Licence for details of permitted re-use. It is a condition of access that users recog- nise and abide by the legal requirements associated with these rights. If you believe that this work infringes copyright please provide details by email to [email protected] Notice: Please note that this document may not be the Version of Record (i.e. published version) of the work. Author manuscript versions (as Sub- mitted for peer review or as Accepted for publication after peer review) can be identified by an absence of publisher branding and/or typeset appear- ance. If there is any doubt, please refer to the published source. http:// cs.anu.edu.au/ ojs/ index.php/ ajiips Current AI in Games: A Review Abstract – As the graphics race subsides and gamers grow established, simple and have been successfully employed weary of predictable and deterministic game characters, by game developers for a number of years.
    [Show full text]
  • Ye Builders Journal” Compilation
    Welcome to the first “Ye Builders Journal” compilation. This is a collection of the first five years of the “Ye Builders Journal” The official newsletter for The Builders Project Guild. Her in you will see all manner of things erudite and erroneous. We hope you enjoy your time in this tome. Special recognition goes to our fearless leader rubberducky78, without whom none of this would be possible, as well as all our members, the greater Neverwinter Nights community and the BioWare staff. Table of Contents NewsletterAugust2003............................................................................................................................................ 5 Article: Shadows of Undrentide: Does it measure up?................................................................................... 6 The not-so-good news:................................................................................................................................6 Opinions on the product.............................................................................................................................. 7 SoU Spotlight: Shadow Dancer ...................................................................................................................... 8 The Website... ............................................................................................................................................... 11 The Festhall: Our new official guild project................................................................................................
    [Show full text]
  • Neverwinter Nights Guide Als
    Eine RPGuides.de Spielhilfe zu „Neverwinter Nights“ Eine Spielhilfe zu 1 Eine RPGuides.de Spielhilfe zu „Neverwinter Nights“ Inhalt Allgemeine Informationen • Anmerkung 3 • Stichpunktübersicht 4 • Spielbeschreibung 5 • Review 8 • Benutzeroberfläche 11 • Charaktererschaffung 12 • Dialogsystem 15 • Geschichte 16 • Kreaturen 17 • Ortschaften 23 Komplettlösung • Kapitel 1 25 • Kapitel 2 51 • Kapitel 3 80 • Kapitel 4 98 • Übersicht der Quests der Kapitel 1-4 108 • Nebenquests Kapitel 1 109 • Nebenquests Kapitel 2 139 • Nebenquests Kapitel 3 164 • Nebenquests Kapitel 4 167 • Gefolgsleute-Quests 169 Anhang • Scriptmöglichkeiten 173 • Toolset 176 2 Eine RPGuides.de Spielhilfe zu „Neverwinter Nights“ Anmerkung Autor(en): Pandur, zauriel, C-Real, McCrazy Überarbeitung: McCrazy Diese Spielhilfe wurde ursprünglich auf der Rollenspielfanseite www.rpguides.de erstellt und veröffentlicht. Sie ist weder ein offizieller Bestandteil des Spiels, noch wird sie in irgendwelcher Form im kommerziellen Sinne verbreitet. Diese Datei gibt lediglich den von Fans erarbeiteten Wissensstand als Hilfe für andere Spieler weiter. Diese Spielhilfe ist nur für die private Verwendung freigegeben. Jegliche kommerzielle oder anderweitige Nutzung (auch in Auszügen) ist untersagt. Haftungsausschluss 1. Inhalt Der Autor übernimmt keinerlei Gewähr für die Aktualität, Korrektheit, Vollständigkeit oder Qualität der bereitgestellten Informationen. Haftungsansprüche gegen den Autor, welche sich auf Schäden materieller oder ideeller Art beziehen, die durch die Nutzung oder Nichtnutzung
    [Show full text]
  • A Neverwinter Nights 2 Module by Richard Ericksen About This Module
    a Neverwinter Nights 2 module by Richard Ericksen About this module Passing Through Lorren is a module I’ve created to demonstrate, basically, that I can create a module. I’m looking to break into the gaming industry, specifically into making MMOs. I’ve written up documentation on ideas I’ve had on boss encounters or specific facets of gameplay in general, but have been told that the best way to focus my energies is by grab- bing a toolset and showing that I can put the tools to work to back up my writing. I’ve worked professionally with computers for years, and feel that a strength of mine is the ability to just grab a new program and start flipping levers and twisting knobs; digging through help files to figure out what does what. Learning a new program is a huge turn fof to some people, especially if they resent that the new version made most of what they just struggled to learn in the previous version obsolete. I’m the guy that’s eagerly downloading new betas to see what cool new stuff they’ve packed in. I love trying to find multiple ways to do the same task using different tools at hand, and I approach difficult situations with the knowledge that there’s usually a better way to go about it. Some quests included in this module are of the vanilla MMO ‘standard fare’. Kill ten rats, go fetch five spores. These portions of the module are me sitting in the driver’s seat of a car during a driving test.
    [Show full text]
  • It Is in the Area Properties That You Can Customize an Area
    THE BUILDERS PROJECT’S GUIDE TO BUILDING II *** THE DESIGN MANUAL Version 0.05 TABLE OF CONTENTS CHAPTER 1 BUILDING A MODULE............................................................................................................................................7 1.1 THE BUILDING ESSENTIALS.....................................................................................................................................................7 1.2 MODULE CATEGORIES.............................................................................................................................................................7 1.2.1 Story Oriented Module.......................................................................................................................................................7 1.2.2 Role-playing Oriented Module...........................................................................................................................................8 1.2.3 Combat Oriented Module...................................................................................................................................................8 1.2.4 Single Player Module.........................................................................................................................................................8 1.2.5 Multi-Player Module..........................................................................................................................................................8 1.2.6 Persistent World Module....................................................................................................................................................8
    [Show full text]
  • Siege of the Heavens V1 07-Vaultpage
    IGN Entertainment: IGN | 1Up | GameSpy | FilePlanet | GameStats | UGO | AskMen | IGN Pro League Skins: NWN2 | NWN Login | Register The Web The Site Search Neverwinter Vault Site New | Updated | Full Listings | Submit Files | Top Rated | Search Front Page Current News Archive Old News Archive NWN MODULES NWN2 Community News NWN Community News Reviewers Forum - Jump to comments - Voting FAQ Work to Do Title Siege of the Heavens v1_07 SCORE OUT OF 10 RSS Feeds Author Magical Master Contacts Submitted / Staff 03-02-2013 / 12-25-2013 9.75 Help Updated Buy NWN2 6 votes Category Epic NWN2 NWN Download Full Games View Stats Expansions Requires Both Expansions (SoU & HotU) Cast Your Vote! My Profile Setting Outer Planes Features Number Players 1 PORTFOLIO HOF NWN2 Models Neverwinter Nights 2 Language English NWN2 Files Level Range 40 1) BOUNCE - Beholder 2) BOUNCE - Driders NWN2 Game Info Races All 3) BOUNCE - Yuan-ti Pureblood NWN2 Resources Tricks & Traps Non-existent 4) BOUNCE - HHM Head Pack01 NWN2 Community Roleplay Light 5) BOUNCE - Yuan-ti Abomination Neverwinter Nights SCREENS Hack & Slash Heavy V iew all Hall of Fame entries NWN Files Classes All NWN Game Info Scope Epic NWN Resources DMNeeded No DM Required NWN Community Single or Single Player TOP NWN2 Modules Multiplayer Vault Network RPG Vault Max Character Archangels in the 1) DM 101 for NWN2 40 Cathedral of Light VN Boards Level 2) The Dana'an Unvanquished IGN Vault Max # Players 01 3) From This Comes Strength Vault Wiki 4) Islander - The Dagger Forged Age of Conan Min # Players 01 Anarchy Online 5) Nihil Trilogy: Aw akening Min Character Asheron's Call 40 6) Heroic Dream v1.3(English version) Dark Age of Camelot Level 7) Sunjammer's Visual Effects Brow ser City of Heroes 8) Conan Chronicles 3 - The Thing in the Cr.
    [Show full text]
  • AI-Controlled Life in Role-Playing Games by Bertil Jeppsson DV1303
    Bachelor's thesis in computer science spring 2008 AI-controlled life in Role-playing games by Bertil Jeppsson DV1303 supervised by Johan Hagelbäck This thesis is submitted to the Department of Interaction and System Design at Blekinge Institute of Technology in partial fulfilment of the requirements for the Bachelor degree in Computer Science. The thesis is equivalent to 10 weeks of full time studies. Contact Information Name: Bertil Jeppsson Address: Folkparksvägen 17:19 Postal code: 37240 City: Ronneby School e-mail: [email protected] Home e-mail: [email protected] Mobile phone: 0730-307793 Acknowledgements I want to thank my supervisor for all the help and support through the project. It wouldn't have been possible without his guidance. I also want to thank my family, my girlfriend and my friends for all support and encouragement throughout the work process. I'd also like to thank the makers of the nwnlexicon [nwnlex], a good API documentation of NWscript which I have visited many times whilst working. Other builders of Neverwinter Nights 2 modules on Bioware's builder forums [nwn2bf] also deserves credit for answering questions I've posted about problems I encountered during the implementation phase. I'd also like to make an acknowledgement that is unrelated to the thesis work itself, but has been an affecting factor personally to me throughout the work. My grand father passed away during this all. May he rest in peace! Abstract Will more realistic behaviour among non-playing characters (NPCs) in a role-playing game(RPG) improve the overall feeling of the game for the player? Would players notice the enhanced life of a NPC in a role-playing game, or is the time spent in cities and villages insufficient to notice any difference at all? There are plenty best-selling RPGs with simplistic, repetitive NPC behaviour on the market.
    [Show full text]
  • Table of Contents
    NWN Man Revised.qxp 6/6/02 15:28 Page i TTableable ofof ContentsContents Introduction . .2 What’s Included in this Manual . .3 The Story So Far . .4 The Game . .5 Quickstart . .5 How to Install and Start Playing . .5 Configuration of the Game . .5 System Specifications . .6 How to Get Technical Support Help . .6 Character Creation Basics . .9 In-Game Screens . .9 The Radial Menu . .10 The Quickbar . .11 The Main Gameplay Screen . .11 Loading/Saving Games . .15 Hotkey Commands . .16 Character Panel . .16 Inventory Panel . .17 Using Containers . .18 Spells Panel . .18 Conversation Panel . .19 Map Panel . .19 Journal Panel . .20 Stores Panel . .20 Barter Panel . .21 Options Panel . .21 Multiplayer . .23 Journeying Online . .23 Hosting a Game Server . .23 Joining a Multiplayer Game . .24 Picking a Character . .24 Local and Server Characters . .25 Moving Characters between Games . .25 Forming a Party . .26 Player Versus Player . .26 Liking or Disliking Other Players . .27 Places and People . .29 Cities and Towns . .29 The City of Neverwinter . .29 The City of Luskan . .29 Port Llast . .29 Beorunna’s Well . .30 Personalities of the North . .30 Lord Nasher . .30 Aribeth . .30 Fenthick . .31 NWN Man Revised.qxp 6/6/02 15:28 Page ii Desther . .31 Equipment, Magic items, and Treasure . .149 Aarin Gend . .31 Armor and Shields . .149 Adventurers . .32 Weapons . .150 Linu La’neral . .32 Sharwyn . .32 Building your Own Adventures . .157 Daelan Red Tiger . .32 The Toolset . .157 Tomi ‘Grin’ Undergallows . .33 Interface Overview . .157 Grimgnaw . .33 Area Display Modes . .158 Boddyknock Glinckle . .33 Modules . .158 Foes . .34 Areas .
    [Show full text]