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

Trying to find this plugin, rewarded with AWP with double damage (ultra AWPx2?)


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
wip
New Member
Join Date: Jul 2018
Old 07-22-2018 , 06:44   Trying to find this plugin, rewarded with AWP with double damage (ultra AWPx2?)
Reply With Quote #1

Hello All,

im trying to find this plugin which my mate discovered on a server, but ive searched everywhere but i cannot find this plugin.

How this plugin works is you kill 10-15 ppl and then a menu pops up asking if you would like an AWP with x2 damage (Yes or no are the options, but in german language).

Then you are provided with an Ultra AWP with x2 in damage, but your first weapon stays in your inventory, suchs as AK47 + AWP, which you can choose to have active.

Screenshot of the option which was discovered, but i have not heard back from their admins.



Does anyone have this plugin laying around?

Last edited by wip; 07-22-2018 at 11:58. Reason: edit change of picture.
wip is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 07-22-2018 , 07:56   Re: Trying to find this plugin, rewarded with AWP with double damage (ultra AWPx2?)
Reply With Quote #2

First of all, nice wallhack. Second, that language is not even close to german.
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
maqi
Senior Member
Join Date: Apr 2017
Location: Serbia
Old 07-22-2018 , 08:11   Re: Trying to find this plugin, rewarded with AWP with double damage (ultra AWPx2?)
Reply With Quote #3

Quote:
Originally Posted by OciXCrom View Post
First of all, nice wallhack. Second, that language is not even close to german.
I lol'd so hard
__________________
stuff
maqi is offline
wip
New Member
Join Date: Jul 2018
Old 07-22-2018 , 08:33   Re: Trying to find this plugin, rewarded with AWP with double damage (ultra AWPx2?)
Reply With Quote #4

Quote:
Originally Posted by maqi View Post
I lol'd so hard

haha, i couldnt care less about the image provided, its one of my friends thats playing on an old VAC banned account.

However, Google does not help me with any results of the plugin thats used.
wip is offline
maqi
Senior Member
Join Date: Apr 2017
Location: Serbia
Old 07-22-2018 , 10:48   Re: Trying to find this plugin, rewarded with AWP with double damage (ultra AWPx2?)
Reply With Quote #5

Hmm, let's say we believe you. You still shouldn't post pictures or advertise hacks and game exploits in any context. Just delete it could be explained easily with words.

I might make it later if i get the time
__________________
stuff
maqi is offline
wip
New Member
Join Date: Jul 2018
Old 07-22-2018 , 11:59   Re: Trying to find this plugin, rewarded with AWP with double damage (ultra AWPx2?)
Reply With Quote #6

Quote:
Originally Posted by maqi View Post
Hmm, let's say we believe you. You still shouldn't post pictures or advertise hacks and game exploits in any context. Just delete it could be explained easily with words.

I might make it later if i get the time
Hi Maqi,

I registered today, so sorry regarding this. ive updated the picture in first post.
wip is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 07-22-2018 , 16:34   Re: Trying to find this plugin, rewarded with AWP with double damage (ultra AWPx2?)
Reply With Quote #7

I'm pretty sure the plugin on the image is a modification of a code that I wrote in another forum recently - https://www.amxx-bg.info/viewtopic.p...&t=4604#p25853

The only thing that's missing is the increased damage.
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
wip
New Member
Join Date: Jul 2018
Old 07-22-2018 , 17:32   Re: Trying to find this plugin, rewarded with AWP with double damage (ultra AWPx2?)
Reply With Quote #8

Quote:
Originally Posted by OciXCrom View Post
I'm pretty sure the plugin on the image is a modification of a code that I wrote in another forum recently - https://www.amxx-bg.info/viewtopic.p...&t=4604#p25853

The only thing that's missing is the increased damage.
Sure looks like that, how much more code would need to be added to have the damage increased x2? - and on death "ultra awp" is gone and another 12kills is needed to get the awp yet again.
wip is offline
maqi
Senior Member
Join Date: Apr 2017
Location: Serbia
Old 07-22-2018 , 18:14   Re: Trying to find this plugin, rewarded with AWP with double damage (ultra AWPx2?)
Reply With Quote #9

Try it out ( untested )

PHP Code:
#include < amxmodx >
#include < hamsandwich >
#include < fun >
#include < cstrike >

#pragma semicolon 1

#define MAX_PLAYERS 32
#define KILLS_REQUIRED 12

#define PLUGIN "Ultra Awp"
#define VERSION "2.0a"

new     g_iKillsMAX_PLAYERS ];

new    
g_iMenu;

public 
plugin_init( ) {
    
register_pluginPLUGINVERSION"maqi" );
    
    
RegisterHamHam_TakeDamage"player""Event_PlayerTakeDamagePre");
    
RegisterHamHam_Killed"player""Event_PlayerKilledPost");
    
    
CreateAwpMenu( );
}

public 
Event_PlayerTakeDamagePreiVictimiInflictoriAttackerFloat:fDamageiDamageBits ) {    
    if( !
is_user_aliveiAttacker ) )
        return 
HAM_IGNORED;
        
    if( !
HasAwpiAttacker ) )
        return 
HAM_IGNORED;
        
    static 
iWeaponiWeapon get_user_weaponiAttacker );
        
    if( 
iWeapon != CSW_AWP )
        return 
HAM_IGNORED;
        
    
SetHamParamFloat4fDamage );
    
    return 
HAM_OVERRIDE;
}

public 
Event_PlayerKilledPostiVictimiKilleriShouldGib ) {
    if( !
is_user_aliveiKiller ) )
        return;
            
    
g_iKillsiVictim ] = 0;
    
    if( 
HasAwpiKiller ) )
        return;
    
    if( ++
g_iKillsiKiller ] >= KILLS_REQUIRED )
        
menu_displayiKillerg_iMenu );
}

GiveAwpiIndex ) {
    if( !
is_user_aliveiIndex ) )
        return;
        
    
give_itemiIndex"weapon_awp" );
    
cs_set_user_bpammoiIndexCSW_AWP30 );
}

CreateAwpMenu( ) {
    
g_iMenu menu_create"Would you like the ultra AWP ?""Handler_MenuAwp" );
    
menu_additemg_iMenu"YES" );
    
menu_additemg_iMenu"NO" );
}

public 
Handler_MenuAwpiIndexiMenuiItem ) {
    if( 
iItem == )
        
GiveAwpiIndex );
        
    return 
PLUGIN_HANDLED;
}

static 
bool:HasAwp( const iIndex ) {
    return ( 
g_iKillsiIndex ] >= KILLS_REQUIRED && user_has_weaponiIndexCSW_AWP ) );

__________________
stuff

Last edited by maqi; 07-23-2018 at 06:28.
maqi 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 12:54.


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