Raised This Month: $51 Target: $400
 12% 

Can someone help me


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Balck
Senior Member
Join Date: Apr 2013
Location: Kosova-Mitrovica
Old 12-18-2013 , 13:37   Can someone help me
Reply With Quote #1

Can some one fix this thanks

Code:
L 12/18/2013 - 21:26:40: [AMXX] Displaying debug trace (plugin "parachute.amxx")
L 12/18/2013 - 21:26:40: [AMXX] Run time error 4: index out of bounds 
L 12/18/2013 - 21:26:40: [AMXX]    [0] parachute.sma::parachute_reset (line 65)
L 12/18/2013 - 21:26:40: [AMXX]    [1] parachute.sma::death_event (line 60)
PHP Code:
#include <amxmodx>
#include <fakemeta>
#include <engine>

new bool:has_parachute[33]
new 
para_ent[33]
new 
pDetachpFallSpeedpEnabled

public plugin_precache()
   
precache_model("models/parachute_ABC.mdl")

public 
plugin_init()
{
    
register_plugin("Parachute""1.3""KRoT@L/JTP10181"// edited by ^^KaMaZZ~.^
    
pEnabled register_cvar("sv_parachute""1" )
    
pFallSpeed register_cvar("parachute_fallspeed""100")
    
pDetach register_cvar("parachute_detach""1")
    
    
register_event("ResetHUD""newSpawn""be")
    
register_event("DeathMsg""death_event""a")
    
    
//Setup jtp10181 CVAR
    
new cvarString[256], shortName[16]
    
copy(shortName,15,"chute")
    
    
register_cvar("jtp10181","",FCVAR_SERVER|FCVAR_SPONLY)
    
get_cvar_string("jtp10181",cvarString,255)
    
    if (
strlen(cvarString) == 0)
    {
        
formatex(cvarString,255,shortName)
        
set_cvar_string("jtp10181",cvarString)
    }
    else if (
contain(cvarString,shortName) == -1) {
        
format(cvarString,255,"%s,%s",cvarStringshortName)
        
set_cvar_string("jtp10181",cvarString)
    }
}

public 
client_connect(id)
  
parachute_reset(id)

public 
client_disconnect(id)
  
parachute_reset(id)
  
public 
newSpawn(id)
{
    if(
para_ent[id] > 0)
    {
        
remove_entity(para_ent[id])
        
fm_set_user_gravity(id1.0)
        
para_ent[id] = 0
    
}
    
has_parachute[id] = true;
}
  
public 
death_event()
{
    new 
id read_data(2)
    
parachute_reset(id)
}

parachute_reset(id)
{
    if(
para_ent[id] > 0)
    {
        if (
is_valid_ent(para_ent[id]))
          
remove_entity(para_ent[id])
    }
    
    if (
is_user_alive(id))
      
fm_set_user_gravity(id1.0)
    
    
has_parachute[id] = false
    para_ent
[id] = 0
}

public 
client_PreThink(id)
{
    if (!
get_pcvar_num(pEnabled)) return
    if (!
is_user_alive(id) || !has_parachute[id]) return
    
    new 
Float:fallspeed get_pcvar_float(pFallSpeed) * -1.0
    
new Float:frame
    
    
new button get_user_button(id)
    new 
oldbutton get_user_oldbutton(id)
    new 
flags get_entity_flags(id)
    
    if (
para_ent[id] > && (flags FL_ONGROUND))
    {
        if (
get_pcvar_num(pDetach))
        {    
            if (
fm_get_user_gravity(id) == 0.1fm_set_user_gravity(id1.0)
            
            if (
entity_get_int(para_ent[id],EV_INT_sequence) != 2)
            {
                
entity_set_int(para_ent[id], EV_INT_sequence2)
                
entity_set_int(para_ent[id], EV_INT_gaitsequence1)
                
entity_set_float(para_ent[id], EV_FL_frame0.0)
                
entity_set_float(para_ent[id], EV_FL_fuser10.0)
                
entity_set_float(para_ent[id], EV_FL_animtime0.0)
                
entity_set_float(para_ent[id], EV_FL_framerate0.0)
                return
            }
            
            
frame entity_get_float(para_ent[id],EV_FL_fuser1) + 2.0
            entity_set_float
(para_ent[id],EV_FL_fuser1,frame)
            
entity_set_float(para_ent[id],EV_FL_frame,frame)
            
            if (
frame 254.0)
            {
                
remove_entity(para_ent[id])
                
para_ent[id] = 0
            
}
        }
        else
        {
            
remove_entity(para_ent[id])
            
fm_set_user_gravity(id1.0)
            
para_ent[id] = 0
        
}
        return
    }
    if (
button IN_USE)
    {
        new 
Float:velocity[3]
        
entity_get_vector(idEV_VEC_velocityvelocity)
        
        if (
velocity[2] < 0.0)
        {    
            if(
para_ent[id] <= 0)
            {
                
para_ent[id] = create_entity("info_target")
                if(
para_ent[id] > 0)
                {
                    
entity_set_string(para_ent[id],EV_SZ_classname,"parachute")
                    
entity_set_edict(para_ent[id], EV_ENT_aimentid)
                    
entity_set_edict(para_ent[id], EV_ENT_ownerid)
                    
entity_set_int(para_ent[id], EV_INT_movetypeMOVETYPE_FOLLOW)
                    
entity_set_model(para_ent[id], "models/parachute_ABC.mdl")
                    
entity_set_int(para_ent[id], EV_INT_sequence0)
                    
entity_set_int(para_ent[id], EV_INT_gaitsequence1)
                    
entity_set_float(para_ent[id], EV_FL_frame0.0)
                    
entity_set_float(para_ent[id], EV_FL_fuser10.0)
                }
            }
            if (
para_ent[id] > 0)
            {
                
entity_set_int(idEV_INT_sequence3)
                
entity_set_int(idEV_INT_gaitsequence1)
                
entity_set_float(idEV_FL_frame1.0)
                
entity_set_float(idEV_FL_framerate1.0)
                
fm_set_user_gravity(id0.1)
                
                
velocity[2] = (velocity[2] + 40.0 fallspeed) ? velocity[2] + 40.0 fallspeed
                entity_set_vector
(idEV_VEC_velocityvelocity)
                
                if (
entity_get_int(para_ent[id],EV_INT_sequence) == 0)
                {    
                    
frame entity_get_float(para_ent[id],EV_FL_fuser1) + 1.0
                    entity_set_float
(para_ent[id],EV_FL_fuser1,frame)
                    
entity_set_float(para_ent[id],EV_FL_frame,frame)
                    
                    if (
frame 100.0)
                    {
                        
entity_set_float(para_ent[id], EV_FL_animtime0.0)
                        
entity_set_float(para_ent[id], EV_FL_framerate0.4)
                        
entity_set_int(para_ent[id], EV_INT_sequence1)
                        
entity_set_int(para_ent[id], EV_INT_gaitsequence1)
                        
entity_set_float(para_ent[id], EV_FL_frame0.0)
                        
entity_set_float(para_ent[id], EV_FL_fuser10.0)
                    }
                }
            }
        }
        else if (
para_ent[id] > 0)
        {
            
remove_entity(para_ent[id])
            
fm_set_user_gravity(id1.0)
            
para_ent[id] = 0
        
}
    }
    else if ((
oldbutton IN_USE) && para_ent[id] > )
    {
        
remove_entity(para_ent[id])
        
fm_set_user_gravity(id1.0)
        
para_ent[id] = 0
    
}



stock Float:fm_get_user_gravity(index)
{
    new 
Float:gravity;
    
pev(indexpev_gravitygravity);
    
    return 
gravity;
}

stock fm_set_user_gravity(indexFloat:gravity 1.0)
{
    
set_pev(indexpev_gravitygravity);
    
    return 
1;

__________________
Balck is offline
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 12-18-2013 , 15:02   Re: Can someone help me
Reply With Quote #2

Ask for support in the plugin's thread.
__________________
fysiks is online now
CyberStars
Senior Member
Join Date: May 2013
Old 12-25-2013 , 01:56   Re: Can someone help me
Reply With Quote #3

Try to check that "0 < id" in "death_event" method:
Code:
public death_event() 
{ 
    new id = read_data(2)
    if(0 < id)
        parachute_reset(id) 
}
CyberStars is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 23:35.


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