12.04.2017, 17:52
BOM ESOTU CRIANDO UM MINE SISTEMA DE RANK EU ESTOU QUERENDO APRENDER TUTORIAIS DE DATABASE ALQUEM PODE ME ARRUMA UM TUTORIAL DE DATABASE OU DEIXA O LINK ABAIXO PFV?
Video Tutorial MySQL
https://sampforum.blast.hk/showthread.php?tid=299675 https://sampforum.blast.hk/showthread.php?tid=579909 https://sampforum.blast.hk/showthread.php?tid=129183 https://sampforum.blast.hk/showthread.php?tid=391920 Se for novato sem saber o bбsico do Pawn, nem recomendo |
CMD:familias(playerid, params[])
{
new contagem = 0;
SendClientMessage(playerid, COLOR_NEWS, "•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•· Lista de Familias •·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·");
format(query, sizeof(query), "SELECT * FROM `familias` ORDER BY `id` ASC");
resultado = db_query(conexao, query);
for(new f; f < db_num_rows(resultado); f++, db_next_row(resultado)) //true
{
contagem++;
new nomefamilia[24], liderfamilia[24], idf, field[10], drestante;
db_get_field_assoc(resultado, "id", field, sizeof(field)); idf = strval(field);
db_get_field_assoc(resultado, "nome", nomefamilia, sizeof(nomefamilia));
db_get_field_assoc(resultado, "lider", liderfamilia, sizeof(liderfamilia));
db_get_field_assoc(resultado, "dias", field, sizeof(field));
drestante = (strval(field) - getdate());
format(celulas, sizeof(celulas), "• ID: [%d] - Famнlia: [%s] - Lнder: [%s] - Dias restantes: [%d] •", idf, nomefamilia, liderfamilia, drestante);
SendClientMessage(playerid, AZULCLARO, celulas);
}
db_free_result(resultado);
SendClientMessage(playerid, COLOR_NEWS, "•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·");
if(contagem > 0)
{
format(celulas, sizeof(celulas), "[CUROSIDADES:] Temos atualmente %02d famнlias cadastradas no servidor.", contagem);
SendClientMessage(playerid, COLOR_LIGHTRED, celulas);
}
return 1;
}