05.01.2014, 02:40
Hola, tengo una tonta duda, explico:
forward Hola(playerid);
public Hola(playerid)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
SendClientMessage(i, -1, "Hola todos");
}
return 1;
}
sobre йsto
forward Hola();
public Hola()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
SendClientMessage(i, -1, "Hola todos");
}
return 1;
}
public OnPlayerSpawn(playerid)
{
Hola(); // їQue diferencia de cуdigos hay al respecto con " playerid "?
Hola(playerid);
return 1;
}
forward Hola(playerid);
public Hola(playerid)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
SendClientMessage(i, -1, "Hola todos");
}
return 1;
}
sobre йsto
forward Hola();
public Hola()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
SendClientMessage(i, -1, "Hola todos");
}
return 1;
}
public OnPlayerSpawn(playerid)
{
Hola(); // їQue diferencia de cуdigos hay al respecto con " playerid "?
Hola(playerid);
return 1;
}