AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   Solved Thunder Events (https://forums.alliedmods.net/showthread.php?t=323703)

rrduna 04-26-2020 08:32

Thunder Events
 
Hello,
I have this thunder events plugin but something about it is causing my server to have a lot of instability.
can someone say what can cause or what can be wrong?


Code

PHP Code:


// define a task id
#define TASKID1 1324687358

// array de sons aleatórios 
new thunder_sounds[][] = {
    
"thunder_events/thunder1",
    
"thunder_events/thunder2",
    
"thunder_events/thunder3",
    
"thunder_events/thunder4",
    
"thunder_events/thunder5"
}

public 
plugin_init() { // registro do plugin
    
register_plugin(PLUGIN,VERSION,AUTHOR)
    
set_taskrandom_float30.0,  60.0 ), "thunderclap")
    return 
PLUGIN_CONTINUE;
}

public 
client_putinserver(id){
    if(
is_user_bot(id)) 
    return;
    
    if(!
task_exists(TASKID1)){
        
restore_lightstyle();
    }
}

public 
thunderclap() { 
    
client_cmd(0,"spk %s",thunder_sounds[random(sizeof thunder_sounds)]);
    
set_taskrandom_float(30.0,  60.0), "thunderclap")
    
    
engfunc(EngFunc_LightStyle0"z")
    
    if(
task_exists(TASKID1)){
        
remove_task(TASKID1
    }
    
set_task(0.2"restore_lightstyle"TASKID1)
    return 
FMRES_HANDLED
}

public 
restore_lightstyle() {
    
engfunc(EngFunc_LightStyle0"m")



Napoleon_be 04-26-2020 08:35

Re: Thunder Events
 
instability? What exact is the problem you're experiencing?

rrduna 04-26-2020 08:47

Re: Thunder Events
 
when the light event occurs, a failure occurs, but the light is still displayed. To make sure it was this plug-in, I commented on the lines that cause the light to be processed and left only the sounds, and in the tests the crash did not exist.

Napoleon_be 04-26-2020 13:46

Re: Thunder Events
 
Quote:

Originally Posted by rrduna (Post 2696307)
when the light event occurs, a failure occurs, but the light is still displayed. To make sure it was this plug-in, I commented on the lines that cause the light to be processed and left only the sounds, and in the tests the crash did not exist.

failure...?


All times are GMT -4. The time now is 06:11.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.