View Single Post
cooba cooba's Avatar

JCF Veteran

Joined: Jan 2004

Posts: 7,812

cooba is a glorious beacon of lightcooba is a glorious beacon of lightcooba is a glorious beacon of lightcooba is a glorious beacon of lightcooba is a glorious beacon of lightcooba is a glorious beacon of light

Oct 5, 2013, 06:14 AM
cooba is offline
Reply With Quote
Quote:
Originally Posted by KRSplatinum View Post
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!");
	}
}