Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create an option to remove all players except yourself #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

TheServer201
Copy link

@TheServer201 TheServer201 commented Aug 3, 2017

Problem: In lost hall with all people you can't see enemies and loots. Also extra players create extra lag.
Answer: Remove all player except yourself but left the minimap unchanged as landmark.

@TheServer201 TheServer201 changed the title Create an option to remove all player on the map except yourself Create an option to remove all players on the map except yourself Aug 3, 2017
@TheServer201 TheServer201 changed the title Create an option to remove all players on the map except yourself Create an option to remove all players except yourself Aug 3, 2017
@LordBunny
Copy link

LordBunny commented Aug 3, 2017

You can also change it in Player.as (Star requirements)
Instead of hiding players only in nexus:

if (Parameters.data_.HidePlayerFilter && map_.name_ == "Nexus" && this != map_.player_) {
			if (numStars_ <= Parameters.data_.chatStarRequirement) {
				return;
			}
        }

To hide players everywhere

if (Parameters.data_.HidePlayerFilter&& this != map_.player_) {
			if (numStars_ <= Parameters.data_.chatStarRequirement) {
				return;
			}
        }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants