Raised This Month: $ Target: $400
 0% 

FF2 [BOSS] The Mimicer (Version 2)


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
SomePanns
Senior Member
Join Date: Dec 2013
Old 11-15-2015 , 11:13   [BOSS] The Mimicer (Version 2)
Reply With Quote #1

As the original author of The mimicer, I decided to "upgrade" him a bit and actually make him more enjoyable. There is no official release for the first version, as only 1 community currently runs him (starts with P).

The Mimicer


As he goes unseen, no one knows what The Mimicer truly looks like, and survives.
His powerful intellectual makes sure that anyone who see his ripped face, also get the chance to taste the calm death.

Requirements: This boss requires k4_mimicer.ff2 subplugin to be able to work properly.

Brief information: Has a wanga prick which lets him disguise upon backstab. He also has 2 lives, with not so much hp.
Passive ability: Auto-disguise when you have not attacked for 3 seconds (this actually stacks, so if you make 2 attacks rapidly, you will diguise after 6 seconds etc)
Rage: Global immobility for 7 seconds (configurable)
On next life: The Mimicer makes a deal with the devil and trades his ability to constantly mimic people,for a last chance to kill everyone who is threatening to reveal the true him. Also globally stuns everyone for X seconds while performing twice as fast. WARNING: This feature alters host_timescale and should be used carefully on servers with SMAC.

I planned to release The Mimicer before halloween, but I completely forgot about it, so I decided to do it now instead. Boss has been tested on BBG's development server.

Credits:
Koishi (shadow93) for writing the passive disguise ability.
RavensBro: Fixed model
p0008874: dr/tele fix

Download: https://www.dropbox.com/s/ojyx7nzqfp...%20v2.rar?dl=1
Attached Files
File Type: zip The Mimicer v2.zip (2.24 MB, 405 views)
File Type: sp Get Plugin or Get Source (k4_mimicer.sp - 472 views - 5.2 KB)

Last edited by SomePanns; 12-31-2015 at 12:55.
SomePanns is offline
p0008874
Senior Member
Join Date: Jul 2014
Old 11-16-2015 , 10:14   Re: [BOSS] The Mimicer (Version 2)
Reply With Quote #2

Welp I fixed the teleport and dead ranger use same time

So i set teleport to reload

Edit:I forgot add download missed phy file
Attached Files
File Type: cfg mimicerv2.cfg (5.2 KB, 408 views)

Last edited by p0008874; 11-17-2015 at 05:09.
p0008874 is offline
RavensBro
Veteran Member
Join Date: Sep 2009
Location: Wisonsin USA
Old 11-18-2015 , 02:37   Re: [BOSS] The Mimicer (Version 2)
Reply With Quote #3

Name:  mimicer.jpg
Views: 6267
Size:  15.3 KB

I fixed him so he looks better now.

whaat no Credit for me making him look better. >
Attached Files
File Type: 7z The Mimicer v2.7z (1.84 MB, 197 views)

Last edited by RavensBro; 11-19-2015 at 09:16.
RavensBro is offline
SomePanns
Senior Member
Join Date: Dec 2013
Old 11-21-2015 , 14:06   Re: [BOSS] The Mimicer (Version 2)
Reply With Quote #4

Quote:
Originally Posted by RavensBro View Post
Attachment 149836

I fixed him so he looks better now.

whaat no Credit for me making him look better. >
Forgot, updated
SomePanns is offline
p0008874
Senior Member
Join Date: Jul 2014
Old 11-22-2015 , 02:47   Re: [BOSS] The Mimicer (Version 2)
Reply With Quote #5

I can't see you edit something

So use mine link

https://www.dropbox.com/s/ojyx7nzqfp...%20v2.rar?dl=1

Sorry my bad now FIXED THE DL

Last edited by p0008874; 12-05-2015 at 20:58.
p0008874 is offline
DaftPan
Senior Member
Join Date: Apr 2015
Location: ctf_3fort
Old 12-05-2015 , 20:32   Re: [BOSS] The Mimicer (Version 2)
Reply With Quote #6

His new theme is better
__________________
I AM TRASH
DaftPan is offline
silenser
Junior Member
Join Date: Aug 2015
Old 12-31-2015 , 07:01   Re: [BOSS] The Mimicer (Version 2)
Reply With Quote #7

Source for ability subplugin? On line 79 client may not be in game
silenser is offline
p0008874
Senior Member
Join Date: Jul 2014
Old 12-31-2015 , 07:54   Re: [BOSS] The Mimicer (Version 2)
Reply With Quote #8

Quote:
Originally Posted by silenser View Post
Source for ability subplugin? On line 79 client may not be in game
He only have ff2 file
so what can i say

Forgot fix the model not download

Last edited by p0008874; 12-31-2015 at 07:58.
p0008874 is offline
SomePanns
Senior Member
Join Date: Dec 2013
Old 12-31-2015 , 12:54   Re: [BOSS] The Mimicer (Version 2)
Reply With Quote #9

Quote:
Originally Posted by silenser View Post
Source for ability subplugin? On line 79 client may not be in game
Uploaded to OP.
SomePanns is offline
silenser
Junior Member
Join Date: Aug 2015
Old 12-31-2015 , 14:32   Re: [BOSS] The Mimicer (Version 2)
Reply With Quote #10

Many thanks

PHP Code:
            if(IsValidClient(clienttrue) && GetClientTeam(client)!=FF2_GetBossTeam())
            {
                
TF2_StunPlayer(clientTscaleDur0.0TF_STUNFLAGS_BIGBONK|TF_STUNFLAG_NOSOUNDOREFFECTclient);
            }
            
EmitSoundToAll(SOUND_SLOW_MO_START);
            
PrintToChat(client"[FF2] Mimicer is in fast motion, causing you to get stunned!"); 
PrintToChat may cause errors, so need move it into IsValidClient checking

PHP Code:
            if(IsValidClient(clienttrue) && GetClientTeam(client)!=FF2_GetBossTeam())
            {
                
TF2_StunPlayer(clientTscaleDur0.0TF_STUNFLAGS_BIGBONK|TF_STUNFLAG_NOSOUNDOREFFECTclient);
                
PrintToChat(client"[FF2] Mimicer is in fast motion, causing you to get stunned!");
            }
            
EmitSoundToAll(SOUND_SLOW_MO_START); 
Fixed version if someone needing
Attached Files
File Type: sp Get Plugin or Get Source (k4_mimicer.sp - 372 views - 5.0 KB)

Last edited by silenser; 12-31-2015 at 14:36. Reason: Forgot attach, lol
silenser 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:18.


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