Search Results
Tenha certeza que vocк estб compilando seu game mode com a include streamer de acordo com o plugin, e isso tambйm pode ser pastas em scriptfiles faltando, de uma olhada.
206
Esse cуdigo que vocк postou jб й outro, vocк tem que substituir o dialogo DIALOG_FACCOES pelo oque eu postei.
88
Й sу vocк colocar SetPlayerPos na dialog DIALOG_FACCOES Exemplo: Код: if(dialogid == DIALOG_FACCOES) { if(response == 0) { SendClientMessage(playerid, -1, "Por favor selecione uma facзгo...
88
Cara, legal vocк querer incentivar os "novatos" do fуrum, mas nгo vejo a necessidade de criar um tуpico sу pra falar isso e se vocк quer realmente contribuir responda os tуpicos de ajuda que te...
145
Vocк pode usar SetPlayerPos e SetSpawnInfo assim que o jogador selecionar a facзгo desejada. https://sampwiki.blast.hk/wiki/SetSpawnInfo https://sampwiki.blast.hk/wiki/SetPlayerPos
88
https://sampwiki.blast.hk/wiki/GetVehicleModel Exemplo: Код: if(GetPlayerVehicleModel(GetPlayerVehicleID(playerid)) == 585) SendClientMessage(playerid, -1, "Afirmativo"); else SendClientMessage(...
120
O ъnico erro que consigo pensar й isso CMD:admins(playerid, params[])
151
Procure no seu game mode algo relacionado com dinheiro do jogador que vocк acha o problema, fбcil.
118
Код: public respawnconce() { new Float:x[6], Float:y[6], Float:z[6]; for(new p1; p1 < 6; p1++){ GetVehiclePos(maxcar[p1], x[p1], y[p1], z[p1]); if(x[p1] == 2148.7766, y[p1] == 1409.4293, ...
97
Esse erro normalmente й plugin, pasta faltando ou erro na main() do seu game mode
117
Pelo oque eu entendi acho que vocк se referiu a isto https://sampwiki.blast.hk/wiki/OnPlayerEditObject
180
Deve ta faltando alguma pasta em scriptfiles ou talvez algum plugin
240
Код: new rand = random(2); if(rand == 1) SendClientMessage(playerid, 0xFF0000FF, string); else if(rand == 2) SendClientMessage(playerid, 0x0000FFFF, string); Nгo testei talvez de certo.
133
Код: public OnPlayerModelSelection(playerid, response, listid, modelid) { if(listid == Skins) { new aname[MAX_PLAYER_NAME]; GetPlayerName(playerid, aname, MAX_PLAYER_NAME); format(file, size...
123
Tenta substituir Код: WP_Hash(INFO_P[playerid][SENHA_P], 129, password); Por Код: WP_Hash(INFO_P[playerid][SENHA_P], 150, password);
286
Pelo cуdigo que vocк postou aqui nгo tem DOF2_SaveFile(); pode ser isso tenta por no final do dialogo de registro.
286
Faz assim Код: new TimerProcurarX1[MAX_PLAYERS]; // Variavel global TimerProcurarX1[playerid] = SetTimerEx("ProcurandoX1Timer", 1000, true, "d", playerid); // Substitui o Timer do comando pra esse...
113