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

Old AMX_Super Posts.


Post New Thread Closed Thread   
 
Thread Tools Display Modes
bmann_420
AMX_Super Pooper
Join Date: Jan 2005
Location: [SuperCentral.co]
Old 03-21-2007 , 14:19   Re: Amx_Super -- Everything You Need -- v2.7 2/28
#1321

The only sounds you can change are the loading sounds. I suggest if you want to use your own sounds (which is all you can do) is get loadingsound.sma and read a few pages in on that thread on how to make it using your own sounds and place it higher in the list in plugins.ini after you recompile than amx_super.amxx. Then it will work
__________________
bmann_420 is offline
popeye5371
Junior Member
Join Date: Aug 2005
Location: Annapolis
Old 03-25-2007 , 17:26   Re: Amx_Super -- Everything You Need -- v2.7 2/28
#1322

DAMAGE DONE/RECIEVED HUD its not workin for me. anyone know y please
thanks pops
popeye5371 is offline
Send a message via AIM to popeye5371 Send a message via MSN to popeye5371
bmann_420
AMX_Super Pooper
Join Date: Jan 2005
Location: [SuperCentral.co]
Old 03-25-2007 , 20:32   Re: Amx_Super -- Everything You Need -- v2.7 2/28
#1323

Only reason i can think of it that its disabled.

Have you tried putting the cvar in your server.cfg or doing it in consol?
__________________
bmann_420 is offline
Demonic
Junior Member
Join Date: Mar 2007
Location: Finland
Old 03-31-2007 , 07:29  
#1324

"unknown unknown unknown amx_super_nohpk bad load "

"[ 29] unknown unknown unknown amx_super_nohpk bad load"
( 29) Load fails: Plugin file open error (plugin "amx_super_nohpk.amxx")
31 plugins, 30 running

there ... O_o


So, it doesn't work at the moment. I think that I have (and in use) all needed modules. I have that amx_super_nohpk.
(fun, engine, cstrike, csx and fakemeta)

Any ideas?

I have Amx_super.txt in \amxmodx\data\lang folder and sounds are in misc folder.
I'm using amx mod x 1.76c

Ah, my bad... I had writen it amx_super_nohpk, but it must be amx_super-nohpk.

Now it's working and ... nice plugin. Good luck with other plugins.
__________________
DEU31's forum
R.I.P. Stratovarius ( 2.4.2008 )


Last edited by Demonic; 04-01-2007 at 13:44. Reason: My Bad, now working
Demonic is offline
Send a message via MSN to Demonic
bmann_420
AMX_Super Pooper
Join Date: Jan 2005
Location: [SuperCentral.co]
Old 03-31-2007 , 17:25   Re: Amx_Super -- Everything You Need -- v2.7 2/28
#1325

in consol when you do amx_plugins, try amxx plugins.

Tell me what it says at the bottom of that list.
__________________
bmann_420 is offline
Throstur
Senior Member
Join Date: Nov 2004
Location: Iceland
Old 03-31-2007 , 20:09   Re: Amx_Super -- Everything You Need -- v2.7 2/28
#1326

Wow, great, you added my sound fix plugin, you could have asked me first though.
__________________
Throstur is offline
Send a message via AIM to Throstur Send a message via MSN to Throstur
bmann_420
AMX_Super Pooper
Join Date: Jan 2005
Location: [SuperCentral.co]
Old 04-01-2007 , 03:55   Re: Amx_Super -- Everything You Need -- v2.7 2/28
#1327

Sorry, their are so many. I try to get as many as i can, but sometimes, no.
But I gave yea full credit, and a lot of people use it
And I personally thank you for it
__________________
bmann_420 is offline
Throstur
Senior Member
Join Date: Nov 2004
Location: Iceland
Old 04-01-2007 , 07:12   Re: Amx_Super -- Everything You Need -- v2.7 2/28
#1328

Yeah well It's okay, I'm happy that you did this as it promotes the use of my plugin, which was made to fix dire errors in certain maps such as fun_allinone.

Just ask me, next time you wish to include my plugins in your bundle.
__________________
Throstur is offline
Send a message via AIM to Throstur Send a message via MSN to Throstur
Demonic
Junior Member
Join Date: Mar 2007
Location: Finland
Old 04-02-2007 , 04:52   Re: Amx_Super -- Everything You Need -- v2.7 2/28
#1329

Any ideas why healing system bugs? All other things look work fine.

But it heals anything like... I put there /heal demon 50 (I have 100hp and I'll get it to 200) But if I put it again it takes hp from me. Just like randomly.

Very strange... O_o
__________________
DEU31's forum
R.I.P. Stratovarius ( 2.4.2008 )

Demonic is offline
Send a message via MSN to Demonic
_Master_
Senior Member
Join Date: Dec 2006
Old 04-02-2007 , 06:00   Re: Amx_Super -- Everything You Need -- v2.7 2/28
#1330

PHP Code:
//ADMIN HEAL v0.9.3 by f117bomb
//==================================================================================================
public admin_heal(id,level,cid){
    if (!
cmd_access(id,level,cid,3))
        return 
PLUGIN_HANDLED
    
    
new arg[32], arg2[8], name2[32], amount[33]
    
read_argv(1,arg,31)
    
read_argv(2,arg2,7)             //<------ Ammount is read 2 times from cmd line
    
read_argv(2,amount,32)          //
    
get_user_name(id,name2,31)
    if (
arg[0]=='@'){
        new 
players[32], inum
        get_players
(players,inum,"ae",arg[1])
        if (
inum==0){
            
console_print(id,"No clients in such team")
            return 
PLUGIN_HANDLED
        
}
        for(new 
a=0;a<inum;++a) {
            new 
user_health get_user_health(players[a])
            
set_user_health(players[a], str_to_num(arg2) + user_health)
        }
        switch(
get_cvar_num("amx_show_activity"))    {
            case 
2:    client_print(0,print_chat,"[AMXX] ADMIN %s: set life on all %s",name2,arg[1])
                case 
1:    client_print(0,print_chat,"[AMXX] ADMIN: set life on all %s",arg[1])
            }
        
console_print(id,"[AMXX] All clients have set life")
        
log_amx("ADMIN HEAL - this command was issued by %s on all %s",name2,arg[1])
    }
    else {
        new 
numamount str_to_num(amount// Turn the string into a number
        
new player cmd_target(id,arg,7)
        if (!
player) return PLUGIN_HANDLED
        
new user_health get_user_health(player)
        
        
//
        //  Ammount is added 2 times
        //
        
set_user_health(playerstr_to_num(arg2) + user_health numamount)
        new 
name[32]
        
get_user_name(player,name,31)
        switch(
get_cvar_num("amx_show_activity"))    {
            case 
2:    client_print(0,print_chat,"[AMXX] ADMIN, %s, gave %i health points to %s",name2,name,numamount)
                case 
1:    client_print(0,print_chat,"[AMXX] ADMIN: set %i health points on %s",numamount,name)
            }
        
console_print(id,"[AMXX] Client ^"%s^" has set life",name)
        
log_amx("ADMIN HEAL - this command was issued by %s on %s",name2,name)
    }
    return 
PLUGIN_HANDLED

_Master_ is offline
Closed Thread



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 06:07.


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