Neverwinter Vault

Expand AllContract All -Site -My Profile -Features

Neverwinter Nights 2

-NWN2 Files -NWN2 Game Info -NWN2 Resources -NWN2 Community

Neverwinter Nights

-NWN Files -NWN Game Info -NWN Resources -NWN Community

Vault Network
RPG Vault
VN Boards
IGN Vault
Vault Wiki
· Age of Conan
· Anarchy Online
· Asheron's Call
· Dark Age of Camelot
· City of Heroes
· D&D
· EVE Online
· EverQuest
· EverQuest 2
· Final Fantasy
· Guild Wars
· Lineage 2
· Lord of the Rings Online
· Middle Earth
· Neverwinter Nights
· Pirates of the Burning Sea
· Rise of the Argonauts
· Star Wars Galaxies
· Tabula Rasa
· The Matrix Online
· The Witcher
· Titan Quest
· Two Worlds
· Vanguard
· Warhammer
· World of Warcraft

Planet Network
Planet Hub

IGN
Games
Cheats
Entertainment

The Web   The Site  



NWN MODULES

- Jump to comments -
Title  Into The Toadshade Multiplayer
Author  Mersozz Yelo
Submitted / Updated  11-11-2004 / 12-08-2004
Category  Dungeon Adventure
Expansions  Requires All Expansions (SoU & HotU & CEP)
Setting  Western Heartlands of Faerun
Gameplay Length  3-6; depends on group's gameplay style
Number Players  Henchmen available, but only if less than 4 players (otherwise, it might impact game balance)
Language  English
Level Range  Designed for four 1st level characters.
Races  Any
Tricks & Traps  Medium
Roleplay  Light
Hack & Slash  Medium
Classes  Mixed party recommended
Scope  Medium
DMNeeded  No DM Required
Single or Multiplayer  Multiplayer
Max Character Level  02
Max # Players  05
Min # Players  02
Min Character Level  01
Content Rating  Teen
Alignments  Any
Description
This is the multiplayer version of 'Into The Toadshade'. Please see the single player module for complete description. ***This module is BETA-status only*** I have revised numerous dialogues and scripts to allow for multiplay. However, due to work and family priorities, I haven't had time playtest this with my friends. I have received feedback from the Vault community that expressed an interest in releasing this module as a multiplayer. Therefore, I kindly ask fellow Vault-heads to assist me in playtesting the module. Please report any bugs to me and I will promptly follow-up with fixes as needed.

Files

NameTypeSizeDownloads
Into_the_Toadshade_vM102.zipInto_the_Toadshade_vM102.zip
Submitted: 11-11-2004 / Last Updated: 12-08-2004
zip2.6Mb294
--
SCORE OUT OF 10
9.5
1 votes
View Stats
Cast Your Vote!

PORTFOLIO
Add this entry to your portfolio so you can track it
Manage your existing portfolios or create a new one.
SCREENS
No Images




You Must Be Logged In to Participate.
Comments (13):

Posted by Qlippoth at 2006-07-17 20:07:42    
I already votes a long time ago on the single player version. I recently got a new machine for a srever and am just abot to delve into teh MP version with a friend. Definately make more!

- Qlippoth

Posted by Trokonen at 2006-07-09 15:46:34    Voted 9.50 on 07/09/06
I left comments before but wasn't logged in properly. Excellent visuals and the battles vs the goblinkind tribe was heart-racing. Awesome job.

Posted by Trokonen ( 24.83.xxx.xxx ) at 2006-06-11 14:54:08    
It's Dave, forgot to login to vote. Again, great adventure. Do more. 9.5

Posted by Dave ( 24.83.xxx.xxx ) at 2006-06-11 14:41:10    
The main quest of this module was superb. The Cold Bones tribe was very cool, I like the mix of goblinoids and the awesome custom gear. The battles were intense. My heart was pounding when bugbears and hobgoblin taskmasters with whips cracking set upon us. Great classic D&D. You really should leave lootable corpses, if only for the visual aspect.
The dwarven (Ranjhammer I think) smithy in Frogwash had the coolest custom gear I've seen yet, what a fantastic selection of shields especially; it really gets you into the game.
There were some scripting issues after the main quest however. Couldn't get into the guild even after they said I could enter. And the NPC's went screwy, wouldn't rest after going to the badlands so I didn't finish that quest; looked pretty cool though.
You should polish this mod because it was one of the best I've played. Great realism and tension/suspense. I give it a 9.5 on the strength of the main quest. NPC's were great too.

Posted by Mersozz at 2004-12-08 17:17:00    
I have uploaded Version M1.02 after a couple fixes.

Both the Froghopper issue (#1) and the Start Conversation issue (#2) have been addressed.

Here is what my old �jump� script looked like:

(begin)
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
object oShip = GetWaypointByTag("WP_SHIP1");
{
AssignCommand(oPC, JumpToObject(oShip));
}
}
(end)

After combing through the various forums, I found what appears to be a good fix:

(begin)
#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
object oShip = GetWaypointByTag("WP_SHIP1");
object oParty = GetFirstFactionMember(oPC);
while(GetIsObjectValid(oParty))
{
AssignCommand(oParty,JumpToObject(oShip));
oParty = GetNextFactionMember(oPC);
}
}
(end)

With respect to issue #2, I had to remove a few triggers, OnPerception scripts, and OnUserDefined scripts. I believe I have removed them all. Unfortunately, whereas NPC�s used to run up and start conversations with the PC (in the single player game), in the multiple player game, the PC�s are just going to have to �ask around� a little more.

If I missed anything, please let me know. Thanks.

Posted by Mersozz at 2004-12-08 12:10:00    
Hey Skeeneyman,

I appreciate the heads up. I am going to change the Frog Hopper area transition(s) - I think the best way to address this is to remove the conversation/jump script and replace with a simple area transition. I have a pretty good idea on how to do it. I will also go through the OnPerception scripts of all my NPCs (which ranks right up there with doing laundry on my "fun to do" list) to avoid the conversation issues you addressed.

Thanks for helping out...I will repost the module with changes ASAP.

Posted by Skeeneyman at 2004-12-08 03:21:00    
I DMed this multiplayer and ran into a few issues.


I didn�t take note every time this happened but it was pretty common. Many NPC�s would start a conversation On perception. As a result the NPC would see the first person and start talking to them then would see the second person and stop talking to the first and begin talking to the second. If there was only two people this would only be a minor annoyance but with 5 it was really hard to talk to people. Clank was a prime example of scripts being broken due to this. The NPC�s need to be On perception of the party leader only.


We also ran into the Frog Hopper Bug. I thought that if I gave everybody a pass they would be able to use the boat but that didn�t work. You will need to change the script so it moves all the party members to the new location. That bug would have been a show stopper if there was no DM.


We didn�t finish the module so that�s all the bugs I have to report.


Keep up the great work!


Skeeneyman



Posted by Mersozz at 2004-12-04 08:49:00    
So far, other than the issue reported by Turold below, I haven't heard of any issues with the Beta. And thus far, nobody has reported a show-stopping glitch on the multiplayer version. Unless I get additional feedback, I am going to change this to "final" in the next few days. If anyone has any feedback, it was be terrific to hear from you before I go "final" with this module. Thanks!

Posted by Mersozz at 2004-11-26 16:42:00    
Hey Turold,

Thanks for pointing out the issue with the Frog Hopper. Can you tell me whether or not the other players are able to eventually "jump" to the next area (following the party leader)?

When you speak to Llevvren (Captain of the Frog Hopper), he will take you to your requested destination either being paying a fee, or by being in possession of a Pass (provided by Gredius Mhaqs at the Frogwash Trading Company).

Here is the script that checks for the pass:

#include "nw_i0_tool"

int StartingConditional()
{

// Make sure the PC speaker has these items in their inventory
if(!HasItem(GetPCSpeaker(), "SHIPPASS"))
return FALSE;

return TRUE;
}


After that script is checked, there is a second script that fires the "jumps" to and from Frogwash Keep:

#include "nw_i0_plot"
void main()
{
object oPC = GetPCSpeaker();
object oShip = GetWaypointByTag("WP_SHIP3");
{
AssignCommand(oPC, JumpToObject(oShip));
}
}

As you can see, the script is tagged to the player that is speaking to Captain Llevvren. Therefore, any subsequent player should also be able to go through the same dialogue and thereafter "jump" to follow the party leader.

If the other players have a pass, or pay the required fee, they should also be allowed to travel to and from the Keep.

Please let me know if that is not the case. Thanks and good luck!

Posted by Turold at 2004-11-25 11:30:00    
A couple of us are working thru the mod in MP. For the most part everthing seems to work 'ok. Would like to report a problem with the "Frog Hopper" transport system. It works fine when returning to the keep, but in when leaving the Keep, the leader plus any associates he has are transported but not the other players. This has happened on every attempt to leave even after being transported back sucessfully.

Otherwise a good job on the dialog and story.

Posted by Mersozz at 2004-11-12 20:51:00    
Hey Firehawk,
Thanks for the kind comments. Just keep in mind it is a BETA....this module was originally a single-player game, and has been adapted for multiplayer use. However, I am going to have to rely on the Vault folks to help work out any kinks. The single-player version was bug-free; I hope I can say the same about the multiplayer version.
-Mersozz.

Posted by rs_firehawk at 2004-11-12 19:01:00    
Hey just skimmed through it in the module editor - I was surprised at the amount of detail put into it. I hope to get a chance to play it sometime - it looks great.-Firehawk

Posted by Mersozz at 2004-11-11 21:25:00    
Note from the module creator: I am very eager to get feedback relating to any bugs...I will make sure to address any issues that come up. I would like to move this from BETA to Final as soon as possible, and am very grateful to those who expressed an interest in helping to playtest it for me.

You must be Logged In to post comments in this section.

 
Most recent posts on the MMO General Boards
Analyst: Star Wars: The Old Republic Could...Analyst: Star Wars: The Old Republic Could Sell 3M: more numbers
- last reply by Acao on Aug 15, 2011 06:15 PM
which class will your first character be
- last reply by Blisteringballs on Aug 15, 2011 05:50 PM
New Community Content!
- posted by Vault_News on Aug 15, 2011 05:00 PM
New Community Content!
- posted by Vault_News on Aug 15, 2011 04:00 PM
NWN Idea Database Update
- posted by Vault_News on Aug 15, 2011 03:46 PM
Missing Votes for NWN2 Hall of Fame
- posted by Vault_News on Aug 15, 2011 03:40 PM
Missing Votes for NWN Hall of Fame
- posted by Vault_News on Aug 15, 2011 03:39 PM
Random Questions and game altering suggest...Random Questions and game altering suggestions!!!
- last reply by ArkadyTepes on Aug 15, 2011 03:22 PM
State of the game?
- last reply by LyricOpera on Aug 15, 2011 01:37 PM
Yesterday streaming, now demanding downloa...Yesterday streaming, now demanding download :(
- last reply by Sinane-tk on Aug 15, 2011 10:23 AM
 

   


IGN Entertainment
By continuing past this page, and by your continued use of this site, you agree to be bound by and abide by the User Agreement.
Copyright 1996-2011, IGN Entertainment, Inc. | Support | Privacy Policy | User Agreement | RSS Feeds
IGN’s enterprise databases running Oracle, SQL and MySQL are professionally monitored and managed by Pythian Remote DBA.


NWN2 Hall of Fame

HOF NWN2 Models


View all Hall of Fame entries


Neverwinter Nights 2

TOP NWN2 Modules

NEW Modules

NEW Reviews

NEW INTL. Modules

TOP Hakpaks

TOP Gameworlds

TOP Tutorials

TOP Prefab:Areas

TOP Blueprints

TOP Plugins

TOP UI

TOP Other

TOP Visual Effects

TOP Scripts

TOP Tools

TOP Movies

TOP Models

TOP Characters





Hall of Fame

HOF NWN Modules


View all Hall of Fame entries


TOP NWN Modules

NEW NWN Modules

NEW Reviews

TOP Intl. Modules

TOP NWN Hakpaks

TOP NWN Gameworlds

TOP NWN Models

TOP NWN Portraits

TOP NWN Scripts

TOP NWN Prefabs

TOP NWN Other

TOP NWN Movies

TOP Sounds

TOP NWN Textures

TOP NWN Creatures

TOP NWN Characters