Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. Feature: /f accept <factionName>
  2.  
  3. Used by players to accept a faction invite sent by a faction captain or leader.
  4. Accepting faction invites sets the player in the joined faction.
  5. This is required so other players can play alongside their friends as a team.
  6.  
  7. Scenario: a player has no pending invites
  8. Given a player is not in a faction
  9. When a player executes the command with all arguments
  10. Then inform the player they were not invited to the faction
  11.  
  12. Background:
  13. Given a player is invited to a faction
  14. When /f accept <factionName> is executed by the player
  15.  
  16. Scenario: a player is already in a faction
  17. Then inform the player they must leave their current faction
  18.  
  19. Scenario: a faction has a max player limit
  20. Then inform the player & the faction the faction is full
  21.  
  22. Scenario: the specified faction name can't be found
  23. Then inform the player the faction doesnt exist
  24.  
  25. Scenario: a player sucessfully joins a faction
  26. Then inform the player & the faction the player joined
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement