Hello again
I want an NPC to greet the player automatically upon entering the Chapel of Dibella, in Anvil. The problem is, it's only after a few seconds that this happens. I want it to happen immediately. Here's the script I devised (my NPC is based on an Anvil guard) :
Scriptname IB1Script
short Doonce
begin menumode
if ( GetStage IB1 == 20 )
if ( Doonce == 0 )
if ( player.getincell AnvilChapelofDibella == 1 )
IBEloiseGuardCaptainRef.StartConversation player GREETING
set Doonce to 1
endif
endif
endif
end
Any suggestions would be helpful