Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. /// Sets the player's current ticket count
  2. ///
  3. /// @param playerId - Entity ID of the player
  4. /// @param newTickets - new ticket count for the player
  5. void SetPlayerTickets( EntityId playerId, int newTickets);
  6.  
  7. /// Gets the player's current ticket count
  8. ///
  9. /// @param playerId - Entity ID of the player
  10. ///
  11. /// @returns Current ticket count of the given player -1 means infinite
  12. int GetPlayerTickets( EntityId playerId );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement