30.11.2013, 23:22
Hola, tengo estos warnings en el siguiente script:
Creo que hice mal las multiplicaciones con " * "... Como lo arreglo?
Код:
C:\Documents and Settings\Administrador\Escritorio\Latin RolePlay\gamemodes\ZenonCity.net.pwn(22300) : warning 213: tag mismatch C:\Documents and Settings\Administrador\Escritorio\Latin RolePlay\gamemodes\ZenonCity.net.pwn(22300) : warning 213: tag mismatch
pawn Код:
CMD:bolsa(playerid, params[])
{
Info[playerid][pAcciones] = 1;
new randomganancia = 0.1 + random(0.7);
new precioaccion = 100;
new ganancia = randomganancia * precioaccion;
new total = ganancia * Info[playerid][pAcciones];
Earn(playerid, total);
}