29.04.2011, 14:51
Usa stock no lugar de public e forward
pawn Код:
stock jArrastar() // Se nгo pegar colocar 'playerid'
{
for(new i = 0; i < MAX_PLAYERS; ++i)
{
if(sendoarrastado[i] == 1)
{
//Isto Vai Fazer Com Que Aquele Settimer La Emcima Arraste e Atualize De 1 Em 1 Segundo
new Float:Pos[3];
GetPlayerPos(arrastador[i], Pos[0], Pos[1], Pos[2]);
SetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
}
}
}