14.01.2015, 03:44
Hola tengo este sistema de PD echo por mi; pero tiene errores, cuando llega el PD a todo el mundo solo muestra; pero en realidad solo se lo esta dando a 1 sola persona.
їCual es el error y como lo corrijo?
їCual es el error y como lo corrijo?
Quote:
public PayDay(playerid) { if (PlayerInfo[playerid][pCellplan] == 2) { new string [128]; new payday = 100*PlayerInfo[playerid][pLevel]; new plan = 10; new total = payday-plan; PlayerInfo[playerid][pAccount]=PlayerInfo[playerid][pAccount]+total; PlayerInfo[playerid][pExp]++; SendClientMessageToAll(COLOR_RED,"|_______________ __Pago_Diario_________________|"); format(string, sizeof(string), "|Pago del estado: $%d Balance de cuenta: %d", payday, PlayerInfo[playerid][pAccount]); SendClientMessageToAll(COLOR_RED, string); format(string, sizeof(string), "|Plan celular: $-10 Total: $%d", total); SendClientMessageToAll(COLOR_RED, string); PlayerPlayMusic(playerid); } else { new string [128]; new payday = 100*PlayerInfo[playerid][pLevel]; PlayerInfo[playerid][pAccount]=PlayerInfo[playerid][pAccount]+payday; PlayerInfo[playerid][pExp]++; SendClientMessageToAll(COLOR_RED,"|_______________ __Pago_Diario_________________|"); format(string, sizeof(string), "|Pago del estado: $%d |Cuenta bancaria: %d", payday, PlayerInfo[playerid][pAccount]); SendClientMessageToAll(COLOR_RED, string); format(string, sizeof(string), "|Total: $%d", payday); SendClientMessageToAll(COLOR_RED, string); PlayerPlayMusic(playerid); } } |