Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- enum red_info
- {
- nick[24],
- senha[128],
- Score,
- Dinheiro,
- Level,
- CarteiraNivel,
- Slots,
- Carros,
- Fuel,
- Logado,
- TesteAutoEscola,
- AutoEscolaTeste,
- TempoAutoEscola,
- ComprandoCasa,
- BOT1,
- BOT2,
- ValorEntrega,
- InEntrega,
- VMODEL
- }
- new PlayerInfo[MAX_PLAYERS][red_info];
- forward CarregarPlayer(playerid);
- public CarregarPlayer(playerid)
- {
- new result[512];
- format(result, sizeof(result),"SELECT * FROM jogadores WHERE player= '%s'",Nome(playerid));
- mysql_query(result);
- mysql_store_result();
- if(mysql_fetch_row(result))
- {
- sscanf(result, "e<p<|>s[24]s[128]iiiiiii>",PlayerInfo[playerid]);
- }
- mysql_free_result();
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment