new_player

Vars | |
saved_job | The job we tried to join but were warned it would cause an unbalance. It's saved for later use |
---|---|
Procs | |
attempt_late_join | Attempts to latejoin the player |
handle_playeR_POLLSing | Shows a list of currently running polls a player can vote/has voted on |
poll_player | Redirects a player to the correct poll window based on poll type. |
poll_player_irv | Shows voting window for an IRV type poll, listing its options and relevant details. |
poll_player_multi | Shows voting window for a multiple choice type poll, listing its options and relevant details. |
poll_player_option | Shows voting window for an option type poll, listing its options and relevant details. |
poll_player_rating | Shows voting window for a rating type poll, listing its options and relevant details. |
poll_player_text | Shows voting window for a text response type poll, listing its relevant details. |
toggle_ready | Toggles the new players ready state |
view_xeno_manifest | Proc for lobby button "View Hive Leaders" to see current leader/queen status. |
vote_on_poll_handler | Runs some poll validation before a vote is processed. |
vote_on_poll_irv | Processes vote form data and saves results to the database for an IRV type poll. |
vote_on_poll_multi | Processes vote form data and saves results to the database for a multiple choice type poll. |
vote_on_poll_option | Processes vote form data and saves results to the database for an option type poll. |
vote_on_poll_rating | Processes vote form data and saves results to the database for a rating type poll. |
vote_on_poll_text | Processes response form data and saves results to the database for a text response type poll. |
Var Details
saved_job

The job we tried to join but were warned it would cause an unbalance. It's saved for later use
Proc Details
attempt_late_join
Attempts to latejoin the player
handle_playeR_POLLSing
Shows a list of currently running polls a player can vote/has voted on
poll_player
Redirects a player to the correct poll window based on poll type.
poll_player_irv
Shows voting window for an IRV type poll, listing its options and relevant details.
If already voted on, the options are sorted how a player voted for them, otherwise they are randomly shuffled.
poll_player_multi
Shows voting window for a multiple choice type poll, listing its options and relevant details.
If already voted on, the options a player voted for are pre-selected.
poll_player_option
Shows voting window for an option type poll, listing its options and relevant details.
If already voted on, the option a player voted for is pre-selected.
poll_player_rating
Shows voting window for a rating type poll, listing its options and relevant details.
If already voted on, the options a player voted for are pre-selected.
poll_player_text
Shows voting window for a text response type poll, listing its relevant details.
If already responded to, the saved response of a player is shown.
toggle_ready
Toggles the new players ready state
view_xeno_manifest
Proc for lobby button "View Hive Leaders" to see current leader/queen status.
vote_on_poll_handler
Runs some poll validation before a vote is processed.
Checks a player is who they claim to be and that a poll is actually still running. Also loads the vote_id to pass onto single-option and text polls. Increments the vote count when successful.
vote_on_poll_irv
Processes vote form data and saves results to the database for an IRV type poll.
vote_on_poll_multi
Processes vote form data and saves results to the database for a multiple choice type poll.
vote_on_poll_option
Processes vote form data and saves results to the database for an option type poll.
vote_on_poll_rating
Processes vote form data and saves results to the database for a rating type poll.
vote_on_poll_text
Processes response form data and saves results to the database for a text response type poll.