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

Jumpcounter


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
xtheone
Junior Member
Join Date: Sep 2010
Old 09-24-2010 , 09:57   Jumpcounter
Reply With Quote #1

Hi, I've got a request for you good scripters out there

It would be REALLY awesome if you guys created a counter that counts normal jumps and crouched jumps. Like, if I jump twice, it says "Jumps: 2" in the left or the right corner. And this text does only come up when I do an normal jump, so if I jump once more, the text will appear again "Jumps: 3"
And the same for crouched jumps.
And if someone could fix levels for this, and I can choose names for the levels after you made the plugin, that would be REALLY, REALLY awesome!

Hoi!
xtheone is offline
Old 09-24-2010, 10:09
SpeeDeeR
This message has been deleted by SpeeDeeR. Reason: oldy
Old 09-24-2010, 10:49
lazarev
This message has been deleted by lazarev. Reason: 1
xtheone
Junior Member
Join Date: Sep 2010
Old 09-25-2010 , 09:49   Re: Jumpcounter
Reply With Quote #2

lazarev: You couldn't optimize it for me, could you? I'm not a scripter
SpeeDeeR: That's not working. And I want levels to

EDIT: Btw, this was EXACTLY the plugin I was looking for BUT it's not working I dunno what's wrong, can you fix it?

Last edited by xtheone; 09-25-2010 at 11:10.
xtheone is offline
Old 09-26-2010, 04:47
lazarev
This message has been deleted by lazarev. Reason: ..
xtheone
Junior Member
Join Date: Sep 2010
Old 09-26-2010 , 05:37   Re: Jumpcounter
Reply With Quote #3

lazarev:
"/groups/amxmodx/tmp3/textAZhnwI.sma(5) : fatal error 100: cannot read from file: "colorchat" Compilation aborted. 1 Error."


That's what it says when I try to compile it?
xtheone is offline
lazarev
Veteran Member
Join Date: Sep 2008
Old 09-26-2010 , 07:03   Re: Jumpcounter
Reply With Quote #4

http://forums.alliedmods.net/showthread.php?t=130511
download colorchat.inc then place it into scripting/include folder, and try to compile again

Last edited by lazarev; 09-26-2010 at 07:05.
lazarev is offline
xtheone
Junior Member
Join Date: Sep 2010
Old 09-26-2010 , 08:08   Re: Jumpcounter
Reply With Quote #5

Lazarev: I cant compile even if I downloaded that colorchat.inc..
xtheone is offline
Old 09-26-2010, 08:31
Erdener
This message has been deleted by Erdener.
lazarev
Veteran Member
Join Date: Sep 2008
Old 09-26-2010 , 08:36   Re: Jumpcounter
Reply With Quote #6

Quote:
Originally Posted by Erdener View Post
xtheone:


Try this :
first of all, remove .amxx
second, you didnt change anything.

PHP Code:
#include < amxmodx >
#include < fakemeta >
#include < hamsandwich >
#include < nvault >
//#include < colorchat >

// OMG OMG PEW PEW PEW
enum Color
{
    
NORMAL 1// clients scr_concolor cvar color
    
GREEN// Green Color
    
TEAM_COLOR// Red, grey, blue
    
GREY// grey
    
RED// Red
    
BLUE// Blue
}

new 
TeamName[][] = 
{
    
"",
    
"TERRORIST",
    
"CT",
    
"SPECTATOR"
}

ColorChat(idColor:type, const msg[], {Float,Sql,Result,_}:...)
{
    if( !
get_playersnum() ) return;
    
    new 
message[256];

    switch(
type)
    {
        case 
NORMAL// clients scr_concolor cvar color
        
{
            
message[0] = 0x01;
        }
        case 
GREEN// Green
        
{
            
message[0] = 0x04;
        }
        default: 
// White, Red, Blue
        
{
            
message[0] = 0x03;
        }
    }

    
vformat(message[1], 251msg4);

    
// Make sure message is not longer than 192 character. Will crash the server.
    
message[192] = '^0';

    new 
teamColorChangeindexMSG_Type;
    
    if(
id)
    {
        
MSG_Type MSG_ONE;
        
index id;
    } else {
        
index FindPlayer();
        
MSG_Type MSG_ALL;
    }
    
    
team get_user_team(index);
    
ColorChange ColorSelection(indexMSG_Typetype);

    
ShowColorMessage(indexMSG_Typemessage);
        
    if(
ColorChange)
    {
        
Team_Info(indexMSG_TypeTeamName[team]);
    }
}

ShowColorMessage(idtypemessage[])
{
    static 
bool:saytext_used;
    static 
get_user_msgid_saytext;
    if(!
saytext_used)
    {
        
get_user_msgid_saytext get_user_msgid("SayText");
        
saytext_used true;
    }
    
message_begin(typeget_user_msgid_saytext_id);
    
write_byte(id)        
    
write_string(message);
    
message_end();    
}

Team_Info(idtypeteam[])
{
    static 
bool:teaminfo_used;
    static 
get_user_msgid_teaminfo;
    if(!
teaminfo_used)
    {
        
get_user_msgid_teaminfo get_user_msgid("TeamInfo");
        
teaminfo_used true;
    }
    
message_begin(typeget_user_msgid_teaminfo_id);
    
write_byte(id);
    
write_string(team);
    
message_end();

    return 
1;
}

ColorSelection(indextypeColor:Type)
{
    switch(
Type)
    {
        case 
RED:
        {
            return 
Team_Info(indextypeTeamName[1]);
        }
        case 
BLUE:
        {
            return 
Team_Info(indextypeTeamName[2]);
        }
        case 
GREY:
        {
            return 
Team_Info(indextypeTeamName[0]);
        }
    }

    return 
0;
}

FindPlayer()
{
    new 
= -1;

    while(
<= get_maxplayers())
    {
        if(
is_user_connected(++i))
            return 
i;
    }

    return -
1;
}
// OMG OMG PEW PEW PEW
const HUDCHANNEL 2;
const 
Float:HUDMESSAGE_DELAY 0.8;

new const 
VERSION[] = "0.2.2b";
new const 
PREFIX[] = "[JUMPS]";

// 0 = Crouched ; 1 = Normal
new Jumps33 ][ ];
new 
JumpLevel33 ][ ];

new 
g_iHudSync;
new 
g_iMaxplayers;
new 
g_iSaveFile;
new 
g_iPlayerCount;

new 
g_pLimit;
new 
g_pHelpFile;
new 
g_pLevelsFile;

new 
bool:g_bHaveCounter33 ][ ]; // 0 = Has Counter ; 1 = Player's Data Loaded? 
new bool:g_bUsedJumpsCmd33 ];

new 
vOrigin33 ][ ];
new 
vOldOrigin33 ][ ][ ]; // 0 = Crouched ; 1 = Normal

const MAXLEVELS 40// 39 LEVELS + NO LVL
const TASKID_JUMPSCMD 36484;
const 
TASKID_LOADPRINT 36148;

new const 
JUMPSMAXLEVELS ] = 
{
//    0,
    
666,
    
2500,
    
5000,
    
10000,
    
15000,
    
20000,
    
25000,    
    
30000,
    
35000,
    
45000,
    
50000,
    
55000,
    
60000,
    
65000,
    
70000,
    
85000,
    
95000,
    
125000,
    
130000,
    
140000,
    
150000,
    
160000,
    
170000,
    
180000,
    
190000,
    
200000
    
220000,
    
260000,
    
280000,
    
300000,
    
330000,
    
360000,
    
400000,
    
450000,
    
550000,
    
570000,
    
680000,
    
860000,
    
1000000
};

new const 
CLASSESMAXLEVELS ][] =
{
    
"No LvL",
    
"NEWBIE",
    
"BEGINNER",
    
"SMALL TIMER",
    
"MODERATE",
    
"CHICK",            // CHICKEN JUMPER
    
"GETTING THE HANG OF IT",
    
"JUMPER",
    
"JUST ANOTHER JUMPER",
    
"COOL JUMPER",
    
"WICKED JUMPER",
    
"SNEACKY JUMPER",
    
"MORE JUMPS PLZ!!!",        // MORE JUMPS PLX!
    
"JUMPISH:",            // JUMPISH
    
"GEEKJUMPER",             // *<:D JUMPER
    
"JUMPING WITH STYLE",
    
"GOING TO THE TOP JUMPER",
    
"JUMP, FOREST, JUMP!",         // <3 JUMPS
    
"ABNORMAL JUMPER",
    
"CANT CATCH THE JUMPER",
    
"ALL DAY JUMPER",
    
"JUMPING 24/7",         // 24/7 JUMPER
    
"UNSTOPPABLE",            // NEVAH STOP JUMPING
    
"NEVAH SURRENDER DA JUMPS",
    
"NOLIFER",            // NO LIFE JUMPER
    
"WE ALL LOVE JUMPS",
    
"DOMINATOR",            // FUCKIN IN DA ASS JUMPER
    
"NAILING THE JUMPS",
    
"SKILLED JUMPER",
    
"PRO JUMPER",
    
"NEMESSIS",
    
"LEET JUMPER",
    
"MEGA JUMPER",
    
"SUPER JUMPER",
    
"UBER JUMPER",
    
"SUPER LEET JUMPER",
    
"SUPER MEGA JUMPER",
    
"SUPER UBER JUMPER",
    
"SUPER LEET MEGA UBER JUMPER",
    
"SUPERSTAR"
};

public 
plugin_init()
{
    
register_plugin"Jump Counter"VERSION"Juice" );
    
    
register_cvar"jc_version"VERSIONFCVAR_SERVER FCVAR_SPONLY );

    
register_clcmd"say""HandleSay" );
    
    
g_iHudSync     CreateHudSyncObj( );
    
g_iMaxplayers     get_maxplayers( );
    
g_iSaveFile     nvault_open"JumpCounter" );
    
    
g_pLimit     register_cvar"jc_playerlimit""0" );
    
    
g_pHelpFile    register_cvar"jc_helpfile""link or folder" );
    
g_pLevelsFile     register_cvar"jc_levelsfile""link or folder" );
    
    
RegisterHamHam_Player_Jump"player""Ham_Player_Jump_Post");
}

public 
HandleSay( const id )
{
    static 
szArg41 ];
    new 
szTarget32 ];
    
    
read_argv1szArgsizeofszArg ) - );
    
parseszArgszArg12szTargetsizeofszTarget ) - );
    
    if( 
equaliszArg"/jumphud" ) )
    {
        
g_bHaveCounterid ][ ] = !g_bHaveCounterid ][ ];
        
ColorChatidRED"^x01%sJumps Counter HUD %sabled. To %sable, type '^x04/jumphud^x01'"PREFIXg_bHaveCounterid ][ ] ? "en" "dis"g_bHaveCounterid ][ ] ? "dis" "en" );
        return 
PLUGIN_HANDLED;
    }
    else if( 
equaliszArg"/jumphelp" ) )
    {
        new 
szPage50 ];
        
get_pcvar_stringg_pHelpFileszPage49 );
        
show_motdidszPage"Jump Counter Help" );
        return 
PLUGIN_HANDLED;
    }
    else if( 
equaliszArg"/cjumplevels" ) || equaliszArg"/jumplevels" ) )
    {
        new 
szPage50 ];
        
get_pcvar_stringg_pLevelsFileszPage49 );
        
show_motdidszPage"Jump Levels" );
        return 
PLUGIN_HANDLED;
    }
    else if( 
equaliszArg"/jumps" ) )
    {
        if( 
g_bUsedJumpsCmdid ] ) 
        {
            
ColorChatidGREEN"^x03%sDo not use these commands too often^x04!"PREFIX ); 
            return 
PLUGIN_HANDLED;
        }
        if ( !
szTarget] )
        {
            new 
szName33 ];
            
get_user_nameidszName32 );
            
ColorChat0GREEN,"^x03[^x04 %s^x03 ][ Jumps:^x04 %i^x03 '^x04%s^x03' ][ Crouched Jumps:^x04 %i^x03 '^x04%s^x03' ]"szNameJumpsid ][ ], CLASSESJumpLevelid ][ ] ], Jumpsid ][ ], CLASSESJumpLevelid ][ ] ] );
            
UsedJumpsCommandid );
        }
        else 
        {
            new 
targetid get_targetszTarget );
            if( 
targetid )
            {
                new 
szName33 ];
                
get_user_nametargetidszName32 );
                
ColorChat0GREEN,"^x03[^x04 %s^x03 ][ Jumps:^x04 %i^x03 '^x04%s^x03' ][ Crouched Jumps:^x04 %i^x03 '^x04%s^x03' ]"szNameJumpstargetid ][ ], CLASSESJumpLeveltargetid ][ ] ], Jumpstargetid ][ ], CLASSESJumpLeveltargetid ][ ] ] );
                
UsedJumpsCommandid );
            }
            else 
            {
                
ColorChatidGREEN"^x03%sThere are no or multiple players with that name '^x04 %s^x03 '"PREFIXszTarget );
            }
        }
        return 
PLUGIN_HANDLED;
    }
    else if( 
equaliszArg"/jumpnext" ) )
    {
        if( 
g_bUsedJumpsCmdid ] ) 
        {
            
ColorChatidGREEN"%s^x03Do not use these commands too often^x04!"PREFIX );
            return 
PLUGIN_HANDLED;
        }
        if ( !
szTarget] )
        {
            new 
szName33 ];
            
get_user_nameidszName32 );
            
ColorChat0GREEN"^x03[ Next level for:^x04 %s^x03 ][ Jumps:^x04 %i^x03 '^x04%s^x03' ][ Crouched Jumps:^x04 %i^x03 '^x04%s^x03' ]"szNameJUMPSJumpLevelid ][ ] ], CLASSESJumpLevelid ][ ] + ] , JUMPSJumpLevelid ][ ] ], CLASSESJumpLevelid ][ ] + ]  );
            
UsedJumpsCommandid );
        }
        else 
        {
            new 
targetid get_targetszTarget );
            if ( 
targetid )
            {
                new 
szName33 ];
                
get_user_nametargetidszName32 );
                
ColorChat0GREEN"^x03[ Next level for:^x04 %s^x03 ][ Jumps:^x04 %i^x03 '^x04%s^x03' ][ Crouched Jumps:^x04 %i^x03 '^x04%s^x03' ]"szNameJUMPSJumpLeveltargetid ][ ] ], CLASSESJumpLeveltargetid ][ ] + ] , JUMPSJumpLeveltargetid ][ ] ], CLASSESJumpLeveltargetid ][ ] + ]  );
                
UsedJumpsCommandid );
            }
            else 
            {
                
ColorChatidGREEN"^x03%sThere are no or multiple players with that name '^x04 %s^x03 '"PREFIXszTarget );
            }
        }
        return 
PLUGIN_HANDLED;
    }
    return 
PLUGIN_CONTINUE;
}

public 
client_putinserverid )
{
    
g_bHaveCounterid ][ ] = true;
    
g_bHaveCounterid ][ ] = false;
    
g_bUsedJumpsCmdid ] = false;
    
LoadDataid );
    
g_iPlayerCount++;
}

public 
client_disconnectid 
{  
    if ( 
task_existsid TASKID_JUMPSCMD ) )
    {
        
remove_taskid TASKID_JUMPSCMD );
    }
    else if( 
task_existsid TASKID_LOADPRINT ) )
    {
        
remove_taskid TASKID_LOADPRINT );
    }
    
g_bHaveCounterid ][ ] = false;
    
g_bHaveCounterid ][ ] = false;
    
g_bUsedJumpsCmdid ] = false;
    
SaveDataid );
    
g_iPlayerCount--;
}  

public 
UsedJumpsCommand( const id )
{
    
g_bUsedJumpsCmdid ] = true;
    
set_task2.0"RemoveUsedJumpsCommand"id TASKID_JUMPSCMD );
}

public 
RemoveUsedJumpsCommand( const id )
{
    
g_bUsedJumpsCmdid TASKID_JUMPSCMD ] = false;
}

public 
SaveData( const id 
{     
    new 
szAuthID35 ];
    new 
vaultkey35 ], vaultdata21 ]; 
    
    
get_user_authididszAuthID34 );
    
    
formatvaultkey34"%s"szAuthID );
    
formatvaultdata20," %i %i %i %i "Jumpsid ][ ], JumpLevelid ][ ], Jumpsid ][ ], JumpLevelid ][ ] ); 

    
nvault_setg_iSaveFilevaultkeyvaultdata ); 
}  

public 
LoadData( const id 

    new 
szAuthID35 ]; 
    new 
vaultkey35 ], vaultdata21 ];
    
    new 
JumpCount][ ]; 
    new 
JumpLevelLoad][ ];
    
    
get_user_authididszAuthID34 ); 
    
    
formatvaultkey34"%s"szAuthID ); 
    
formatvaultdata20," %i %i %i %i "Jumpsid ][ ], JumpLevelid ][ ], Jumpsid ][ ], JumpLevelid ][ ] ); 

    
nvault_getg_iSaveFilevaultkeyvaultdata255 ); 
    
    
parsevaultdataJumpCount], 8JumpLevelLoad], 2JumpCount], 8JumpLevelLoad], ); 
    
    
Jumpsid ][ ] = str_to_numJumpCount] ); 
    
Jumpsid ][ ] = str_to_numJumpCount] ); 
    
    
JumpLevelid ][ ] = str_to_numJumpLevelLoad] );
    
JumpLevelid ][ ] = str_to_numJumpLevelLoad] );
    
    
set_task3.0"PrintLoadMessage"id TASKID_LOADPRINT );
}

public 
PrintLoadMessage( const id )
{
    
ColorChatid TASKID_LOADPRINTGREEN"^x03%sYour^x04 %i^x03 Jumps and^x04 %i^x03 Crouched Jumps has been loaded - [v%s]"PREFIXJumpsid TASKID_LOADPRINT ][ ], Jumpsid TASKID_LOADPRINT ][ ], VERSION );
    
g_bHaveCounterid TASKID_LOADPRINT ][ ] = true;
}
    
public 
Ham_Player_Jump_Post( const id )
{
    if( 
/*get_pdata_int( id, 114 ) == 1 &&*/ g_bHaveCounterid ][ ] && ( pevidpev_flags ) & FL_ONGROUND ) && !( pevidpev_oldbuttons ) & IN_JUMP ) )
    {
        static 
ig_PlayerLimitszName33 ], Distance];
        
        
g_PlayerLimit get_pcvar_numg_pLimit );
        
        
get_user_nameidszName32 );
        
get_user_originidvOriginid ] );
        
        
Distance] = get_distancevOldOriginid ][ ], vOriginid ] );
        
Distance] = get_distancevOldOriginid ][ ], vOriginid ] );
        
        if( 
g_iPlayerCount g_PlayerLimit )
        {
            for( 
1<= g_iMaxplayersi++ )
            {
                if( 
== || user_spectating_playeriid ) && g_bHaveCounter][ ] )
                {
                    
set_hudmessage200000.0220.1700.0HUDMESSAGE_DELAY0.00.0HUDCHANNEL );
                    
ShowSyncHudMsgig_iHudSync"NOT ENOUGH PLAYERS!!!" );
                }
            }
            return 
HAM_IGNORED;
        }
        
        if( 
pevidpev_button ) & IN_DUCK )
        {
            if( 
Jumpsid ][ ] > 1000000 ) return HAM_IGNORED
            if( 
Distance] >= 110 )
            {
                ++
Jumpsid ][ ];
                while( 
Jumpsid ][ ] >= JUMPSJumpLevelid ][ ] ] )
                {
                    ++
JumpLevelid ][ ];
                    
ColorChat0GREEN"^x03%s^x04 %s^x03 has done^x04 %i^x03 Crouched Jumps! [NEW LEVEL:^x04 %s^x03]"PREFIXszNameJumpsid ][ ], CLASSESJumpLevelid ][ ] ] );
                }
                if( 
g_bHaveCounterid ][ ] )
                {
                    
set_hudmessage02001400.0220.1700.0HUDMESSAGE_DELAY0.00.0HUDCHANNEL );
                    for( 
1<= g_iMaxplayersi++ )
                    {
                        if( 
user_spectating_playeriid ) )
                        {
                            
ShowSyncHudMsgig_iHudSync"%s:^nCrouched Jumps: %i"szNameJumpsid ][ ] );
                        }
                        else
                        {
                            
ShowSyncHudMsgidg_iHudSync"Crouched Jumps: %i"Jumpsid ][ ]);
                        }
                    }
                }
                
vOldOriginid ][ ] = vOriginid ];
            }
            else
            {
                if( 
g_bHaveCounterid ][ ] )
                {
                    
set_hudmessage200000.0220.1700.0HUDMESSAGE_DELAY0.00.0HUDCHANNEL );
                    
ShowSyncHudMsgidg_iHudSync"CROUCH JUMPING AT THE SAME POSITION!!!!!!" );
                }
            }
        }
        else
        {    
            if( 
Jumpsid ][ ] > 1000000 ) return HAM_IGNORED;
            if( 
Distance] >= 100 )
            {
                ++
Jumpsid ][ ];
                while( 
Jumpsid ][ ] >= JUMPSJumpLevelid ][ ] ] )
                {
                    ++
JumpLevelid ][ ];
                    
ColorChat0GREEN"^x03%s^x04 %s^x03 has done^x04 %i^x03 Jumps! [NEW LEVEL:^x04 %s^x03]"PREFIXszNameJumpsid ][ ], CLASSESJumpLevelid ][ ] ] );
                }
                if( 
g_bHaveCounterid ][ ] )
                {
                    
set_hudmessage02001400.0220.1700.0HUDMESSAGE_DELAY0.00.0HUDCHANNEL );
                    for( 
1<= g_iMaxplayersi++ )
                    {
                        if( 
user_spectating_playeriid ) )
                        {
                            
ShowSyncHudMsgig_iHudSync"%s:^nJumps: %i"szNameJumpsid ][ ] );
                        }
                        else     
                        {
                            
ShowSyncHudMsgidg_iHudSync"Jumps: %i"Jumpsid ][ ] );
                        }
                    }
                }
                
vOldOriginid ][ ] = vOriginid ];
            }
            else
            {
                if( 
g_bHaveCounterid ][ ] )
                {
                    
set_hudmessage200000.0220.1700.0HUDMESSAGE_DELAY0.00.0HUDCHANNEL );
                    
ShowSyncHudMsgidg_iHudSync"JUMPING AT THE SAME POSITION!!!!!!" );
                }
            }
        }
    }
    return 
HAM_IGNORED;
}

public 
plugin_end()
{
    for( new 
1<= g_iMaxplayersi++ )
    {
        
SaveData);
    }
}

stock bool:user_spectating_player( const iSpectator, const iPlayer )
{    
    if( 
is_user_connectediSpectator ) && is_user_connectediPlayer 
    && !
is_user_aliveiSpectator ) && is_user_aliveiPlayer )
    && 
peviSpectatorpev_deadflag ) == 
    
&& peviSpectatorpev_iuser1 ) != 3
    
&& peviSpectatorpev_iuser2 ) == iPlayer )
        return 
true;

    return 
false;
}

stock get_target( const szArg[] )
{
    new 
iTarget find_player"bl"szArg );
    if( 
iTarget 
    {
        if( 
iTarget != find_player"blj"szArg ) ) 
        {
            return 
0;
        }
    }
    else if( ( 
iTarget find_player"c"szArg ) ) == && szArg] == '#' && szArg] )
    {
        
iTarget find_player"k"str_to_numszArg] ) );
    }
    if( !
iTarget || !is_user_aliveiTarget ) )
    {
        return 
0;
    }
    return 
iTarget;

lazarev is offline
Erdener
Senior Member
Join Date: Apr 2010
Location: Turkey
Old 09-26-2010 , 08:39   Re: Jumpcounter
Reply With Quote #7

Quote:
Originally Posted by lazarev View Post
first of all, remove .amxx
second, you didnt change anything.
Yes ofcourse

Deleted .amxx and .sma
__________________
Erdener is offline
xtheone
Junior Member
Join Date: Sep 2010
Old 09-26-2010 , 08:51   Re: Jumpcounter
Reply With Quote #8

Works like a charm!
You should really upload this and get it approved ;)

EDIT: Is there any way that I can disable jumps for CT? So the jumps only counts for T?

Last edited by xtheone; 09-26-2010 at 08:54.
xtheone is offline
lazarev
Veteran Member
Join Date: Sep 2008
Old 09-27-2010 , 04:51   Re: Jumpcounter
Reply With Quote #9

PHP Code:
/*get_pdata_int( id, 114 ) == 1 &&*/

///  change to

get_pdata_intid114 ) == && 
lazarev is offline
xtheone
Junior Member
Join Date: Sep 2010
Old 09-27-2010 , 12:21   Re: Jumpcounter
Reply With Quote #10

If I change that I get this error..

"
/home/groups/amxmodx/tmp3/phpKr33zn.sma(455) : error 029: invalid expression, assumed zero 1 Error. Could not locate output file /home/groups/amxmodx/public_html/websc3/phpKr33zn.amx (compile failed)."

EDIT: fixed it..
EDIT2: Now my hlds launcher keeps crashing? Help me?

Last edited by xtheone; 09-27-2010 at 12:28.
xtheone 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 17:41.


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