Jump to content

ReputationSet minor typo


Recommended Posts

In both the BG2 and BG2(EE) actions list, the entry for 162 ReputationSet is this:

________________________________

This action sets the reputation to the specified value.

IF
  Global("KRGOODDEED","GLOBAL",0)
THEN
  RESPONSE #100
    SetReputation(20)
    SG("KRGOODDEED",1)
END

The example, presumably from a mod (or made up) since it's not used in the base game, uses the incorrect SetReputation instead of ReputationSet.

BG2EE does have an actual, in-game use from the Black Pits II campaign, but it uses an EE-exclusive trigger so it may not be a good example for the oBG2 entry:

IF
    Global("TIER","GLOBAL",0)
    Global("OHB_INITREP","OH8100",0)
    AreaCheckAllegiance(PC)
    OR(2)
        ReputationLT(Player1,10)
        ReputationGT(Player1,12)
THEN
    RESPONSE #100
        SetGlobal("OHB_INITREP","OH8100",1)
        ReputationSet(10)
        Continue()
END

 

Link to comment

Join the conversation

You are posting as a guest. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...