22.06.2013, 09:02
Para las variables
Prueba si es esto lo que quieres.
Prueba si es esto lo que quieres.
pawn Код:
new Array[4][] =
{
{"uno"},
{"dos"},
{"tres"},
{"cuatro"}
};
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/array", true))
{
new Rand = random(4);
SendClientMessage( playerid, 0x000000ff, Array[Rand]);
}
return 0;
}

