10.11.2010, 22:56
й so vocк criar os checkpoints e por igual esse comando
pawn Код:
if(strcmp(cmd, "/depositar", true) == 0) {
new tmp[256];
new quantidade;
new checknome; //==
checknome = CPS_GetPlayerCheckpoint(playerid); // isso vai procurar o nome do Checkpoint.
if(checknome == Banco || Banco2 ){ // aqui vocк pode adicionar os nomes dos checkpoints em que vгo poder usar esse comando.
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)){
SendClientMessage(playerid, COLOR_WHITE, "Uso: /depositar [quantidade]");
return 1;
}
quantidade = strval(tmp);
if(quantidade <= 0 || quantidade > GetPlayerMoney(playerid)){
SendClientMessage(playerid, COLOR_RED, "Vocк nгo tem todo esse dinheiro. Ou estб tentando enviar $0.");
return 1;
}
if(IsPlayerInCheckpoint(playerid)){
GivePlayerMoney(playerid, 0 - quantidade);
udb_setBankMoney(PlayerName(playerid), udb_getBankMoney(PlayerName(playerid)) + quantidade);
return 1;
}
else{
SendClientMessage(playerid, COLOR_YELLOW, "Vocк precisa estar em um banco para usar esse comando.");
SendClientMessage(playerid, COLOR_YELLOW, "Bancos: Hotel, Car's Shop, SF Train Station, San Andreas Federal Mint.");
return 1;
}
}