Database    Profile    PM Inbox    Calendar    Members    ST Team    Forum Search    FAQ   Portal    Overview

Silgrad.comThe GalleryBooks & StoriesDownload the Silgrad Tower modChatBroad silgrad.com searchForum PortalFrequently Asked QuestionsMaps of our Lands
Silgrad Tower: Oblivion » Sundry » General ES Modding » Kedal » Help Please ;-; » Hello You [Logout]
Last Post | First Unread Post Print Page | Recommend to a Friend | Add Thread to Favorites
Post New Thread Post Reply
Go to the bottom of this page Help Please ;-;
Author
Post « Previous Thread | Next Thread »
Forsena
Associate

Registration Date: 2007.03.14
Posts: 2
Location: Charleston

Help Please ;-; Reply to this Post Post Reply with Quote Edit/Delete Posts Report Post to a Moderator        Go to the top of this page

So, basically for testing purposes I want a quest for Kedal that is independent of Silgrad. I want it to be kind of like the Dark Brotherhood quest where Lachance comes and talks to you in your sleep, except I want a ghostly figure of Maria to come to you the next time you sleep after enabling the mod. I have looked through all the Lachance scripts, all the quests, and all the dialogues and have found nothing that could help me.
If someone could please point me in the right direction of what I am actually looking for, I would be in your debt.

__________________
Kedal is not pronounced kettle! >.<
2007.07.13 22:47 Forsena is offline Send an Email to Forsena Search for Posts by Forsena Add Forsena to your Buddy List Send a Private Message to Forsena AIM Screen Name of Forsena: Forsena View the MSN Profile for Forsena
sandor
Councilor


images/avatars/avatar-2929.jpg

Registration Date: 2006.03.21
Posts: 3,580
Location: Belgium/The Netherlands

RE: Help Please ;-; Reply to this Post Post Reply with Quote Edit/Delete Posts Report Post to a Moderator        Go to the top of this page

You have to attach a script to the quest(s) which define(s) the update of the quest stages (Maria).


Dark Brotherhood.

For example (part of the script attached to the Dark00General quest, keeps track of the fact if you're a murderer):

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
scriptname DarkBrotherhoodScript

short Murderer
short MountHead
short MotierreSurprise
short HidesHeartSound
short VampOffer
short VampAccept
short VampPlayer
short SancDoorPass 
short LachanceVisit
short AssassinsPurified
short DraconisKilled
short LachanceGreet
short OcheevaGreet
short ArquenGreet
short ArquenBravilGreet
short RitualPosition
short ApplewatchEnabled
float TeleportTimer
float ArquenTalkTimer
short HereHeComes
short Welcome
float WelcomeTimer
short Celedaen
short Perennia 
short ArenaBarrel
short FriendlyCat
short Garlic
Float fQuestDelayTime
short Delay

Begin GameMode

if Delay == 0
	set Dark00General.fQuestDelayTime to .5
	set Delay to 1
endif


; Tracks when player is a murderer
If Murderer == 0
	if IsPCAMurderer == 1
		StartQuest Dark01Knife
		;Message "You have murdered an innocent in cold blood...."
		Message "Your killing has been observed by forces unknown...."
		LucienLachanceMurderRef.Enable
		set Murderer to 1
		set Dark00General.fQuestDelayTime to 0
	endif
endif

End

etc.


which is relevant for the Dark01Knife quest (started through the DarkBrotherhoodScript) and the attached script (the RufioDie_Script together with the dials define the other stages, displaying the message during the sleep of the PC) :

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
scriptname RufioDie_Script

short enabled
short RufioAfraid
short OcheevaGreet
short test
short LachanceAgain
short Appeared
short Farragut
short Move
short AppearedAgain
Float fQuestDelayTime
short NoDelay
short LachanceTwo
short Invis1
short Invis2
short LachanceGreets

begin MenuMode

if NoDelay == 0
	if Dark00General.Murderer == 1
		set fQuestDelayTime to .5
		set NoDelay to 1
	endif
endif

etc.


__________________
Silgrad city, a huge city under construction, it may be visited in the next public release i.e. Silgrad Tower v3.00.

Exitus acta probat.
The outcome proves the deeds. (the end justifies the means).
Ovid BC 43-18 AD, Roman Poet

2007.07.14 19:46 sandor is offline Send an Email to sandor Search for Posts by sandor Add sandor to your Buddy List Send a Private Message to sandor
Tree Structure | Board Structure
Jump to:
Post New Thread Post Reply
Rate Thread: 

very bad very bad 

1

2

3

4

5

6

7

8

9

10
 very good very good

Silgrad Tower: Oblivion » Sundry » General ES Modding » Kedal » Help Please ;-;

Forum Software: Burning Board 2.3.2, Developed by WoltLab GmbH