Update Linking Players Objectives authored by Devin's avatar Devin
......@@ -39,7 +39,7 @@ Now, we'll need to add a row (per player) to 2 tables: `QuestStates` and `Object
- Run this command: `select * from QuestStates;`
- Take note of the column names. They should be playerID, questID, questState, and needingNotification.
- Run this command: `insert into QuestStates(playerID,questID,questState,needingNotification) values(PID,QID,1,0);`
- Be sure to replace playerID and questID with the values you wrote down.
- Be sure to replace PID and QID with the values you wrote down.
- replace PID with playerID
- replace QID with questID
......
......