11.11.2009, 15:00
I've tried twenty times without any luck..
Could anybody tell me how to spawn a jetpack?
I get errors when i compile, or just by doing this basic one
I still get errors, is it under OnGameModeInIt ?
Could anybody put the code in there then, seriously I've got headache because off this
Could anybody tell me how to spawn a jetpack?
Quote:
Everytime i add a jetpack or something like this = if(strcmp(cmdtext,"/jetpack",true) == 0) { new Float:X,Float:Y,Float:Z; GetPlayerPos(playerid,X,Y,Z); CreatePickup(370,2,X,Y,Z); SendClientMessage(playerid, COLOR_GREY, "* Spawned jetpack"); return 1; } |
Quote:
CreatePickup(1242, 2, 1503.3359, 1432.3585, 10.1191, -1); |
Quote:
public OnGameModeInit() { if(fexist("SAGC/Other/JoinCounter.cfg")) { JoinCounter = dini_Int("SAGC/Other/JoinCounter.cfg", "Connections"); printf("file \"JoinCounter.txt\" located, variable JoinCounter loaded (%d visitors)", JoinCounter); } else { dini_Create("SAGC/Other/JoinCounter.cfg"); dini_IntSet("SAGC/Other/JoinCounter.cfg", "Connections", 0); print("file \"SAGC/Other/JoinCounter.cfg\" created with JoinCounter variable (0 visitors)"); } |