Guten Abend,
Habe ein Error in meinem Script, mit dem ich nicht zurecht komme. Habe schon vieles Probiert, nichts hat geklappt.
Wäre Dankbar, wenn ihr es hinbekommt :(!!
Error:
C:\Users\Luca\Desktop\Revolution.pwn(2676) : error 017: undefined symbol "IsPlayerInt"
Code:
ocmd:heal(playerid, params[])
{
new string[128], pID, money;
new house = Spieler[playerid][Hauskey];
if(house < 255)
{
if(IsPlayerInt(playerid, 60.0, HouseInfo [house][hEntrancex], HouseInfo[house][hEntrancey], HouseInfo[house][hEntrancez]) && GetPlayerInterior(playerid) > 0)
{
if(HouseInfo[house][hArmor] == 1)
{
SetPlayerArmour(playerid, 100);
format(string, sizeof(string), "* %s legt sich eine Schutzweste an.");
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
}
else
{
format(string, sizeof(string), "Dieser Ort hat kein Rüstungsupgrade.");
SendClientMessage(playerid, COLOR_WHITE, string);
}
if(HouseInfo[house][hLeben] == 1)
{
SetPlayerHealth(playerid, 100);
format(string, sizeof(string), "* %s nimmt einen Happen zu sich.");
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
}
else
{
format(string, sizeof(string), "Dieser Ort hat kein Heilungsupgrade.");
SendClientMessage(playerid, COLOR_WHITE, string);
}
return 1;
}
}
Bitte Bitte .. weis echt nicht weiter!