Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. $form->addRadioList('result', 'What will you do?', array(
  2. 'one' => 'He has left the town and never showed up with the provisions he promised.',
  3. 'two' => 'He has gotten angry but he is still in town; however, he seems to get infected.',
  4. ));
  5.  
  6. if ($values['result'] = 'one')
  7. {
  8. $this->GameM->MorePlague($this->user->id);
  9. $this->GameM->MoveNextStage($this->user->id);
  10. $this->GameM->InsertResultFirst($this->user->id, 1);
  11. }
  12. else
  13. $this->GameM->MoveNextStage($this->user->id);
  14. $this->GameM->InsertResultFirst($this->user->id, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement