Autocrack
#1

Код:
C:\Users\Phil\Desktop\-\Bureau\PR-RP\gamemodes\ROY-RP.pwn(41471) : error 001: expected token: ";", but found "if"
C:\Users\Phil\Desktop\-\Bureau\PR-RP\gamemodes\ROY-RP.pwn(41476) : error 010: invalid function or declaration
Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid)
{
   	new Float:health;
    GetPlayerHealth(playerid,health)
    if(health < 20.0)
    {
    ApplyAnimation(playerid,"PED","crckdeth2",4.1,1,1,1,1,1,1);
    }
    }
    return 1;
}
What is the problem?
Reply
#2

pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid)
{
    new Float:health;
    GetPlayerHealth(playerid,health); // forgot the ;
    if(health < 20.0)
    {
    ApplyAnimation(playerid,"PED","crckdeth2",4.1,1,1,1,1,1,1);
    }
    }
    return 1;
}
Reply
#3

Quote:
Originally Posted by SnG.Scot_MisCuDI
Посмотреть сообщение
pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid)
{
    new Float:health;
    GetPlayerHealth(playerid,health); // forgot the ;
    if(health < 20.0)
    {
    ApplyAnimation(playerid,"PED","crckdeth2",4.1,1,1,1,1,1,1);
    }
    }
    return 1;
}
Thanks
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)