Table of Contents

Total Page:16

File Type:pdf, Size:1020Kb

Table of Contents Table of contents TABLE OF CONTENTS I GLOBAL ACTION 3 GLOBAL ARTIFICIAL INTELLEGENCE 32 GLOBAL GROUP 55 GLOBAL PLACEABLES 59 GLOBAL REPORTS 61 GRAPHICAL USER INTERACE 64 i NWN2 STOCK SCRIPTS VOL I MAIN SCRIPTS (ABRIDGED) PRESENTED BY GAMEMASTER X & THE KNIGHTS OF THE CHARRED TABLE WWW.KALIFORNICA.COM [email protected] ii FOREWORD HI, GAMEMASTER X HERE. I WAS PEEKING UP THE GAMES SKIRT AND LOOKING AT ALL ITS PRIVATE PARTS AND IT OCCURRED TO ME IT WOULD BE NICE TO HAVE ALL THE STOCK SCRIPTS IN AN E-BOOK FORMAT. WHAT YOU HAVE HERE IS VOL 1 OF A THREE PART SERIES OF NEVERWINTER NIGHTS 2 STOCK SCRIPTS (THE ONES THAT INSTALL WITH THE GAME). VOL 1 CONCENTRATES ON MAIN SCRIPTS OR THOSE SCRIPTS NOT SPECIFIC TO SPELLS OR A SPECIFIC AREA. MY INTENTION IS FOR THE FINAL SERIES TO BE LAID OUT AS FOLLOWS. VOL I MAIN SCRIPTS VOL II SPELL SCRIPTS VOL III AREA SCRIPTS VOL IV 2DA Global Action // ga_alignment /* This changes the player's alignment nActType = From a scale from +3 (Saintly/Paragon) to -3 (Fiendish/Anarchic), how much the act affects alignment bLawChaosAxis = 0 means adjust Good/Evil axis, 1 means adjust Law/Chaos axis */ // ga_attack /* This script makes the sAttacker attack the PC. It should be placed on an [END DIALOG] node. Parameters: string sAttacker = Tag of attacker whom will attack the PC. Default is OWNER. */ // ga_attack_target iii /* This script makes the sAttacker attack the sTarget. It should be placed on an [END DIALOG] node. Parameters: string sAttacker = Tag of attacker. Default is OWNER. string sTarget = Tag of Target. Default is PC. */ // ga_blackout // // wrapper function for FadeToBlackParty() to instantly make screen black. Useful for the // first node of conversations. // CGaw & BMa 2/13/06 - Created. #include "ginc_cutscene" void main() { object oPC = (GetPCSpeaker()==OBJECT_INVALID?OBJECT_SELF:GetPCSpeaker()); FadeToBlackParty(oPC, 1, 0.0); } // ga_camera_facing_point _party /* Point the cameras of all PCs' in the Speaker's party to target sTarget. Camera will be fDistance meters away from the PC, and pitched at fPitch degrees. -fDistance can be between 1 and 25. At least 5 is advisable in most cases. 0 = use distance of current camera value -fPitch can be between 1 and 89. 89 is nearly parallel to the ground. 1 is almost directly overhead. 60-70 is usually a reasonable default. 0 = use pitch of current camera value - nTransitionType can be 0 or between 1 and 100. The higher the 4 number, the faster the transition. 0 = snap to new facing, no transition. */ // ga_clear_comp() /* Removes all roster members from the PC party. Removed roster members are not despawned. */ // ga_compshift /* This is the companion shift script that adjusts a companion's reaction to the PC nCompanion = This is the integer value of the companion in question nChange = This is the amount their reaction is adjusted nOverride = If this isn't equal to 0, the companions reaction is set to this amount. Use with caution. */ // ga_conversation_self /* start a conversation file with yourself. Parameters: string sConversation = Conversation file to start. */ // ga_create_obj(string sObjectType, string sTemplate, string sLocationTag, int bUseAppearAnimation, string sNewTag, float fDelay) /* Wrapper for CreateObject() with optional delay. 5 Parameters: string sObjectType = Object type. The following are allowed: C - CREATURE P - PLACEABLE I - ITEM W - WAYPOINT S - STORE string sTemplate = Name of the template to create. string sLocationTag = Tag of the waypoint at which to create the object. int bUseAppearAnimation = If =1, object will use appear animation. string sNewTag = Optional new tag for created object. float fDelay = Delay, in seconds, before creating the object. */ // ga_cutscene_move // // Move and delay the advancing of the conversation for a maximum of nMilliseconds. // Conversation will also advance if the move completes. // ga_date_advance /* Advance date by amount indicated nYear - Number of years to advance. nMonth - Number of months to advance. nDay - Number of days to advance. */ // ga_date_set /* Advance date by amount indicated nYear - Specific year to set calendar to from 1340 to 32001. nMonth - Specific month to set 6 calendar from 1 to 12. nDay - Specific day to set calendar to from 1 to 28. */ // ga_death /* This script makes objects appear dead sTag = The tag(s) of the object(s) to make dead. You can pass multiple tags, seperated by commas (NO SPACES) to make multiple objects dead (ie. "Object1,Object2,Object3") iInstance = The instance of the object(s) to make dead. Pass -1 to make all instances dead. */ // ga_destroy /* This script destroys objects sTag = The tag(s) of the object(s) to destroy. You can pass multiple tags, seperated by commas (NO SPACES) to destroy multiple objects (ie. "Object1,Object2,Object3") NOTE: There may eventually be a function to eat white space (See Mantis 3296), but for now do not put spaces in the string. iInstance = The instance of the object to destroy. Pass -1 to destroy all instances. Pass 0 to destroy the first instance. fDelay = The delay before destroying the object(s) */ // ga_destroy_item /* This takes an item from a player 7 sItemTag = This is the string name of the item's tag nQuantity = The number of items to destroy. -1 is all of the Player's items of that tag. nPCFaction = Take from the whole PC faction */ //ga_destroy_party_hen chmen /* Destroy all henchmen in the entire party */ // ga_disable_scripts /* saves and clears the event handlers */ // ga_donothing.nss /* Do nothing, really. */ // ga_door_close /* This closes a door sTag = The tag of the door to close nLock = Set to 1 if you want to lock the door after it closes */ // ga_door_open /* This opens a door sTag = The tag of the door to open */ // ga_effect /* Does an effect on the specified target. This function takes 5 params: string sEffect - one of the below effects string sParams - comma delimited list of needed params string sDuration - I - Instant 8 (default), P - Permanent, or T,<duration> - Temporary w/ specified duration ex: temporay 30 seconds would be "T,30.0f" int iVisualEffect - -1=no visual, 0 = standard visual, or supply your own from visualeffects.2da (will be applied as an instant) string sTarget - Uses the standard GetTarget() function - default is the PC Speaker *** Effects and Paramaters *** AbilityIncrease - nAbility , nModifyBy -- Abilities: Str=0, Dex=1, Con=2, Int=3, Wis=4, Cha=5 AbilityDecrease - nAbility, nModifyBy Blindness - no params Damage - nDamageAmount, nDamageType, nDamagePower -- Types: Bludgeon=1, acid=16, fire=256, etc.; Powers: Normal=0, PlusThree=3, etc. Death - no params Disease - nDiseaseType -- (0-16) see DISEASE_* constants in nwscript.nss Heal - nDamageToHeal Paralyze - no params Poison - nPoisonType -- (0-43) see POISON_* constants in nwscript.nss Raise - no params Visual - nVisualEffectId -- see visualeffects.2da for param options Example 1: This action script will heal the PC Speaker 100hp in a conversation ga_effect ("Heal", "100", "", 0, "") Example 2: This action script will permanently give the PC Speaker in a conversation increased strength (+2) ga_effect ("AbilityIncrease", "0,2", "P", 0, "") */ // ga_enable_scripts /* restores the saved event handlers */ 9 // ga_end_game( string sEndMovie ) void main( string sEndMovie ) { EndGame( sEndMovie ); } // ga_face_target(string sFacer, string sTarget, int bLockOrientation) /* This script commands sFacer to face sTarget. Parameters: string sFacer = Tag of object that will do the facing. Default is OWNER string sTarget = Tag of object that sFacer will orient towards. int bLockOrientation = If =1, dialog manager will stop adjusting sFacer's facing for the active dialog. */ // ga_faction_join /* This script makes sTarget join a new faction. sTarget - The target who's faction will change (see Target's note). sTargetFaction - Either one of the 4 standard factions $COMMONER, $DEFENDER, $HOSTILE, $MERCHANT or a target who's faction is to be joined (must be a creature) */ // ga_faction_rep /* This script makes sTarget be viewed differently by a faction. sTarget - The target who will be viewed differently (see Target's note). sTargetFaction - Either one of the 4 standard factions $COMMONER, $DEFENDER, $HOSTILE, $MERCHANT or a target who belongs to the faction (may or may not need to be a creature) sChange - the amount to change the faction reputation by. (May later be ammended to allow setting). */ // ga_fade_from_black // // wrapper function for FadeToBlackParty() to fade all party members from black. If the screen // had previously faded into a specific color, FadeToBlackParty() will fade back from that color. // // fSpeed controls how quickly, in seconds, the screen will fade to black. Setting this to 0 will // result in an instant fade from black. Standard value is 1.0. 10 // // bColor allows users to specify what color the screen should fade back from. Basic colorlist: // 0 = black // ga_fade_to_black // // wrapper function for FadeToBlackParty() to fade all party members to black. // // fSpeed controls how quickly, in seconds, the screen will fade to black. Setting this to 0 will // result in an instant fade to black. // // fFailsafe indicates the maximum lenght of time, in seconds, that the screen will remain black // before automatically fading back in. Leave at 0.0 to use the default value of 15 seconds. // nColor allows users to specify what color the screen should fade into. Basic colorlist: // 0 = black, 16777215 = white. Hex Values for colors may be found in NWN2_Colors.2da, though // they must be converted to
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]