Quote:
Originally Posted by KRSplatinum
Can the /ready command give coins too? Not infinite coins, but just some amount like GMR.
|
Code:
bool isGameStarted;
void onPlayer(jjPLAYER@ p) {
if (jjGameState == GAME::STARTED && !isGameStarted) {
isGameStarted = true;
p.coins = 10;
jjAlert("You get 10 coins!");
}
}
|