Raised This Month: $ Target: $400
 0% 

ProKreedz Ultimativ v2.4


Post New Thread Reply   
 
Thread Tools Display Modes
vato loco [GE-S]
Veteran Member
Join Date: Oct 2006
Location: Germany
Old 12-01-2010 , 04:33   Re: ProKreedz Ultimativ v2.4
Reply With Quote #61

my server has 20 slots no i have no problems
with semiclip...what does he report what kind of bug...
__________________

Last edited by vato loco [GE-S]; 12-01-2010 at 06:54.
vato loco [GE-S] is offline
ConnorMcLeod
Veteran Member
Join Date: Jul 2006
Location: France (95)
Old 12-01-2010 , 11:09   Re: ProKreedz Ultimativ v2.4
Reply With Quote #62

His report only says that it bugs...

About name thing, and bugs, instead of ripping :
http://forums.alliedmods.net/showthr...131#post609131

Rip :
http://forums.alliedmods.net/showthr...02#post1020602

Name bug is fixed by hooking prethink POST.
Other bugs may be fixed by getting rid of this FirstThink useless thing.
__________________
- tired and retired -

- my plugins -
ConnorMcLeod is offline
vato loco [GE-S]
Veteran Member
Join Date: Oct 2006
Location: Germany
Old 12-01-2010 , 13:20   Re: ProKreedz Ultimativ v2.4
Reply With Quote #63

i know your semiclip and it really good i have test it
in one of my older versions of prokreedz...
the only problem was that grab is not working then...
__________________
vato loco [GE-S] is offline
bibu
Veteran Member
Join Date: Sep 2010
Old 12-01-2010 , 13:53   Re: ProKreedz Ultimativ v2.4
Reply With Quote #64

I also got problems with that semiclip, I sometimes stuck in other players, so I disabled your semiclip and putted connors one, works perfectly... though I saw the Friend text when I was aiming someone, cause your hooking event statusvalue..
bibu is offline
vato loco [GE-S]
Veteran Member
Join Date: Oct 2006
Location: Germany
Old 12-01-2010 , 16:26   Re: ProKreedz Ultimativ v2.4
Reply With Quote #65

ok will update plugin with Connors semiclip...
i have test it again and this time grab work with
your semiclip

sorry when i ask so stupid but whats wrong
with the weaponmaxspeed stock ???
__________________
vato loco [GE-S] is offline
gladius
Veteran Member
Join Date: Jul 2008
Location: Santiago, Chile
Old 12-01-2010 , 16:51   Re: ProKreedz Ultimativ v2.4
Reply With Quote #66

mmm You can do this for the maxspeed, your method don't check knife.

I wrote this plugin some months ago.
PHP Code:
#include <amxmodx>
#include <fakemeta>

new Enable;
new 
HudSync;
new 
PlayerMaxSpeed[33];

public 
plugin_init() {
    
register_plugin("Weapon MaxSpeed""0.1""GlaDiuS");
    
    
register_event("CurWeapon""WeaponChange""be""2!0");
    
    
register_clcmd"say /maxspeed""CmdMaxSpeed");
    
register_clcmd"say .maxspeed""CmdMaxSpeed");
    
    
Enable register_cvar("amx_wpnspeed""1");
    
    
HudSync CreateHudSyncObj();
}

public 
client_putinserver(user)
{
    if(
get_pcvar_num(Enable))
    {
        
PlayerMaxSpeed[user] = true;
    }
}

//Credits Connor :)
public WeaponChange(user
{
    if(
get_pcvar_num(Enable))
    {
        static 
LastUseWeapon[33];
        static 
UseWeapon;
        static 
WeaponIndex;
        
        
UseWeapon read_data(1);
        
WeaponIndex read_data(2);
        
        if((
WeaponIndex != LastUseWeapon[user]) && UseWeapon && PlayerMaxSpeed[user])
        {
            
LastUseWeapon[user] = WeaponIndex;
            
            static 
MaxSpeed;
            
            
MaxSpeed pev(userpev_maxspeed);
            
            
set_hudmessage(250250250, -1.00.02__1.2_0.5, -1);
            
ShowSyncHudMsg(userHudSync"[%s] ^nWeapon MaxSpeed: %d"get_user_weapon_printname(user), MaxSpeed);
        }
    }
}

public 
CmdMaxSpeed(user)
{
    if(
get_pcvar_num(Enable))
    {
        if(
PlayerMaxSpeed[user])
        {
            
PlayerMaxSpeed[user] = !PlayerMaxSpeed[user];
        }
        
        
client_print(userprint_center"MaxSpeed %snable",PlayerMaxSpeed[user] == "E" "Dis");
    }
    else
    {
        
client_print(userprint_center"Weapon MaxSpeed is disabled");
    }
    
    return 
PLUGIN_HANDLED;
}

get_user_weapon_printnameindex 

    new 
szWeapon[20];
    if(
is_user_connected(index)) {
        
get_weaponname(get_user_weapon(index), szWeaponcharsmax(szWeapon));
        
replace(szWeaponcharsmax(szWeapon), "weapon_""");
    }
    return 
szWeapon

I hope this can be usefull
__________________
Proyects
Kreedz Chile Mod [100%] (Fixing some details).

gladius is offline
Send a message via MSN to gladius Send a message via Skype™ to gladius
ConnorMcLeod
Veteran Member
Join Date: Jul 2006
Location: France (95)
Old 12-02-2010 , 01:34   Re: ProKreedz Ultimativ v2.4
Reply With Quote #67

Weapon maxspeed affects player maxspeed, so why do you make that stock ?
I don't say that you don't have to do so, just want to know why.

Then, if that stock is needed, you don't take in account all possibilities, see cssdk as i told you.
__________________
- tired and retired -

- my plugins -
ConnorMcLeod is offline
Old 12-02-2010, 03:29
vato loco [GE-S]
This message has been deleted by vato loco [GE-S]. Reason: ...
Kosta021
Junior Member
Join Date: Nov 2010
Location: Novi Sad - State of EXIT
Old 12-02-2010 , 09:56   Re: ProKreedz Ultimativ v2.4
Reply With Quote #68

Ok, one good thing. I typed /spec, first it was all buggy, then i managed to watch player, showkeys and everything. I tried to type /unspec to get back to game - didn't work. Here's the IP 91.150.72.230:26666

P.S. Semiclip problems here to, sometimes i just crash to other players during game. ;)

Last edited by Kosta021; 12-02-2010 at 09:58.
Kosta021 is offline
vato loco [GE-S]
Veteran Member
Join Date: Oct 2006
Location: Germany
Old 12-02-2010 , 10:33   Re: ProKreedz Ultimativ v2.4
Reply With Quote #69

@ Kosta021
i was on your server and it's strange...

__________________

Last edited by vato loco [GE-S]; 12-02-2010 at 14:28.
vato loco [GE-S] is offline
Kosta021
Junior Member
Join Date: Nov 2010
Location: Novi Sad - State of EXIT
Old 12-02-2010 , 10:39   Re: ProKreedz Ultimativ v2.4
Reply With Quote #70

Yeah, tell me about it... Strangest thing is that kz arg for example works. :/
Kosta021 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 13:09.


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