Code: Show/Hide String s[3];
s[0] = "Your kills: "+ (String)kills); s[1] = "Your deaths: " + (String)deaths); s[2] = "Your skill: 0"); for(int x = 0; x < 3; x++) sendPrivate(p,s[x]); |
Code: Show/Hide for (_listnode <Player> *parse = playerlist->head;parse;parse = parse->next)
{ Player *p = parse->item; sendPrivate(p,"Hello"); } |
Code: Show/Hide String s[3] =
{ "Your kills: "+ (String)kills, "Your deaths: " + (String)deaths, "Your skill: 0" }; |