0.13.5 - [C0B10Y15] The Relic does not give extra reputation [RESOLVED 0.15.1]

Locked
Lywzc
Posts: 107
Joined: Mon Sep 23, 2019 6:15 pm

0.13.5 - [C0B10Y15] The Relic does not give extra reputation [RESOLVED 0.15.1]

Post by Lywzc »

It should give 12 but instead gives normal 5.
Can it be caused by

Code: Select all

_S.01_ task:
	toting _item_ and _questgiver_ clicked 
	give pc _reward_ 
	end quest 

_S.03_ task:
	when _S.01_ and _S.02_ 
	say 1035 
	change repute with _questgiver_ by +7
so that when it should give 7 more the quest has already ended?

Lywzc
Posts: 107
Joined: Mon Sep 23, 2019 6:15 pm

Re: The Relic does not give extra reputation

Post by Lywzc »

Anyone?

User avatar
Interkarma
Posts: 7236
Joined: Sun Mar 22, 2015 1:51 am

Re: The Relic does not give extra reputation

Post by Interkarma »

Based on task arrangement, I'd say that's the problem. Quest will end in S.01 before S.03 triggers.

Would need to rearrange that logic slightly to fix.

User avatar
JorisVanEijden
Posts: 114
Joined: Mon Aug 12, 2019 5:02 pm

Re: 0.13.5 - [C0B10Y15] The Relic does not give extra reputation

Post by JorisVanEijden »

I gave it a shot here: https://github.com/Interkarma/daggerfal ... /pull/2483 by moving the "end quest" to the end of the quest ;)

Locked