View Single Post
ORdli
Member
Join Date: Nov 2021
Old 01-23-2024 , 16:29   Re: Plugin not compile [ZPS]
Reply With Quote #11

Quote:
Originally Posted by Grey83 View Post
PHP Code:
#pragma semicolon 1
#pragma newdecls required

#include <sdktools_functions>

bool bShow;

public 
void OnMapStart()
{
    
CreateTimer(1.0Timer_HP_TIMER_REPEAT|TIMER_FLAG_NO_MAPCHANGE);

    
HookEvent("round_begins"Event_RoundEventHookMode_PostNoCopy);
    
HookEvent("round_win"Event_RoundEventHookMode_PostNoCopy);
}

public 
void Event_Round(Event event, const char[] namebool dontBroadcast)
{
    
bShow name[6] == 'b';
}

public 
Action Timer_HP(Handle timer)
{
    if(!
bShow)
        return 
Plugin_Continue;

    static 
char cls[16];
    for(
int i 1aim<= MaxClientsi++)
        if(
IsClientInGame(i) && !IsFakeClient(i) && IsPlayerAlive(i)
        && (
aim GetClientAimTarget(ifalse)) > MaxClients && GetEntityClassname(aimclssizeof(cls))
        && (!
strncmp(cls"func_breakable"14false) || (!strncmp(cls"prop_physics"12false)))
            
PrintHintText("Health [ %d / %d ]"GetEntProp(aimProp_Data"m_iHealth"), GetEntProp(aimProp_Data"m_iMaxHealth"));

    return 
Plugin_Continue;



plugin not compile

/groups/sourcemod/upload_tmp/textU0FRni.sp(31) : error 001: expected token: ")", but found "-identifier-"

1 Error

Last edited by ORdli; 01-23-2024 at 16:30. Reason: have error
ORdli is offline