Ejemplo n.º 1
0
 public void Share()
 {
     // colocar delay, e se clicar demais, tirar viewrs e trigerrar comentario
     if (shareClicks++ == 0 && boost == 0)
     {
         boost = 1;
     }
     else if (shareClicks >= 7)
     {
         baseViewers -= Mathf.RoundToInt(Mathf.Log(shareClicks) / 10);
         Chat.AddCommentToChat(Comentario.getRandName(), "Para de spamma!!!");
     }
 }