 |
Map: Arvahn Ruins (A) (37/74) |
 |
|
Quest from: Zhjaeve;
When you set off for Arvahn, you’ll encounter a peasant on your way who’s chased by some hunters. You can either let them kill him or save him.
 

 
When you’re on the spot, you’ll immediately see the first statue of purification (A1). Your goal is to find all of these. Head for the nearby Orc encampment (A2) and talk to their leader, Uthanck. He’ll propose a deal – his clan will let you be and you kill an Ogre named Ghellu. First of all, though, head for the Temple of Seasons (A3).
HINT: In the orc encampment you’ll also see a local shaman named Ilrah, who’ll give you an interesting view of your future.
|
|
 |
Map: Arvahn Ruins (A) (37/74) |
 |
comments and responses
| this should help, with the statue bug:
1. Open your toolset.
(This is NWN2ToolsetLauncher.exe inside your NWN2 game directory.)
2. Choose File->New->Script
3. Click the "Script" tab. Should be somewhere near the tabs for "conversations" and "areas."
4. Right-click "Script 1" in that tab. Choose "Rename"
5. Rename the script to "24_p_talk_statue"
6. Copy-paste the following text into the script:
#include "ginc_debug"
int GetIsPartyInCombat()
{
object oPC = GetFirstPC();
object oFM = GetFirstFactionMember(oPC, FALSE);
while(GetIsObjectValid(oFM))
{
if(GetIsInCombat(oFM))
{
return TRUE;
}
oFM = GetNextFactionMember(oPC, FALSE);
}
return FALSE;
}
int GetIsEnemyWithin( object oTarget, float fDist)
{
object oNearest = GetNearestCreature( CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, oTarget);
if( GetIsObjectValid(oNearest) && GetDistanceBetween( oTarget, oNearest) < fDist)
{
return TRUE;
}
return FALSE;
}
void main()
{
object oUser = GetLastUsedBy();
if( GetIsPartyInCombat() || GetIsEnemyWithin(oUser, 15.f))
{
SendMessageToPCByStrRef( oUser, 83352); //"you cannot use that item while in combat."
return;
}
ActionStartConversation( oUser);
}
7. Hit F7 to compile the script.
8. In your game directory (in the My Documents folder), go to the "modules" subdirectory, and open a folder called "temp0." Your toolset needs to remain open while you do this.
9. Select the file "24_p_talk_statue.ncs" and copy it to your My Documents\\\\NWN2\\\\Override directory.
| blatti27 29/11/2007 11:44 | | ok this is the solving problem : the easiest way are u just load from the save before u entering the arvhan ruins (very frist time entering arvhan ruins), and see again the event ...
but if u dont have a save from there.. sorry u can't continue the journey... | Sandra Jerro 10/03/2007 10:27 | | same problem with statue 1 too, sugestions? | Saint 10/03/2007 10:19 | | Same problem with statue 1, sugestions? | KY 20/02/2007 23:35 | | i have the same problem as dante, any sugestions? | me 19/02/2007 09:14 | | me too dante how can i use it anyone | ziv 16/02/2007 18:57 | | there is a glitch in my game on the first statue of purifiation it says (you cannot select this object while in combat) how do i get arround it. i've done 2,3 and 4. | Dante 11/02/2007 17:23 |
|
| |
| |
Comments are moderated. Some features are NOT available in comments, but ARE available on forums. See this tread on forum.
|
|
|