(questId string)
| 236 | } |
| 237 | |
| 238 | func (a ScriptActor) GiveQuest(questId string) { |
| 239 | |
| 240 | events.AddToQueue(events.Quest{ |
| 241 | UserId: a.UserId(), |
| 242 | QuestToken: questId, |
| 243 | }) |
| 244 | |
| 245 | } |
| 246 | |
| 247 | // Gets a party object that indexes ALL members of the party |
| 248 | func (a ScriptActor) GetParty(excludeSelf ...bool) ScriptParty { |
no test coverage detected