Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public function nameColor($playerlvl, $monsterlvl) {
  2. if ($playerlvl === $monsterlvl) {
  3. $this->colorToPlayer = "white";
  4. } else if ($playerlvl < $monsterlvl) {
  5. $this->colorToPlayer = "red";
  6. } else if ($playerlvl > $monsterlvl) {
  7. $this->colorToPlayer = "blue";
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement