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

[CS:GO|CSS|L4D1&2] Fortnite Emotes Extended version (dances and emotes)[5-April-2023]


Post New Thread Reply   
 
Thread Tools Display Modes
CrazySkull2k
Member
Join Date: Feb 2017
Old 02-28-2020 , 09:41  
Reply With Quote #131

Hi, does anyone know if it works on surf servers? Because I want to play an emote but the player just stands still and doesn't do anything, but the song plays. Sourcemod 1.10 build 6460

Ok so apparently it is because of the surf plugin, it blocks animations for some reason. I'm using fluffys surftimer, could you maybe add compatibility in the future?

Last edited by sneaK; 03-22-2020 at 01:38. Reason: merged double post
CrazySkull2k is offline
sneaK
SourceMod Moderator
Join Date: Feb 2015
Location: USA
Old 03-21-2020 , 21:12   Re: [CS:GO] Fortnite Emotes Extended version (dances and emotes)[updated 7-Feb-2020]
Reply With Quote #132

Quote:
Originally Posted by CrazySkull2k View Post
Ok so apparently it is because of the surf plugin, it blocks animations for some reason. I'm using fluffys surftimer, could you maybe add compatibility in the future?
Forwards are available to integrate into other plugins, such as the timer.

Just sent a PR and Fran merged it not too long ago which fixes a 3rd party plugin utilizing any of the forwards not loading if this plugin is not present.
__________________
sneaK is offline
NanoC
Veteran Member
Join Date: Jan 2016
Location: Argentina
Old 03-27-2020 , 21:08   Re: [CS:GO] Fortnite Emotes Extended version (dances and emotes)[updated 7-Feb-2020]
Reply With Quote #133

Francisco, could you add an option to teleport players if they touch any trigger_* entity? There's an option to disable emotes when players get teleported, you can maybe add something like that but for every triggers entities, because i found some issues if players use them while they are touching a trigger
__________________
NanoC is offline
Send a message via Skype™ to NanoC
CrazyGhostRider
Member
Join Date: Apr 2014
Location: Russia
Old 03-27-2020 , 21:59   Re: [CS:GO] Fortnite Emotes Extended version (dances and emotes)[updated 7-Feb-2020]
Reply With Quote #134

Hello
Could you add TF2 game support?
CrazyGhostRider is offline
NanoC
Veteran Member
Join Date: Jan 2016
Location: Argentina
Old 03-29-2020 , 01:11   Re: [CS:GO] Fortnite Emotes Extended version (dances and emotes)[updated 7-Feb-2020]
Reply With Quote #135

Quote:
Originally Posted by CrazyGhostRider View Post
Hello
Could you add TF2 game support?
this is more important xd

Quote:
Originally Posted by NanoC View Post
Francisco, could you add an option to teleport players if they touch any trigger_* entity? There's an option to disable emotes when players get teleported, you can maybe add something like that but for every triggers entities, because i found some issues if players use them while they are touching a trigger
__________________
NanoC is offline
Send a message via Skype™ to NanoC
NanoC
Veteran Member
Join Date: Jan 2016
Location: Argentina
Old 04-04-2020 , 00:57   Re: [CS:GO] Fortnite Emotes Extended version (dances and emotes)[updated 7-Feb-2020]
Reply With Quote #136

Fixed that issue i've posted above that players can still using emotes even if they were affected by a trigger_hurt, trigger_push or trigger_multiple (entities by maps). This is useful for Zombie Escape servers because if any human use an item and a zombie is dancing, it won't be affected by the item entities

Just add this whenever you want inside the code and recompile

PHP Code:
public void OnEntityCreated(int entity, const char[] classname)
{
    if(
StrEqual(classname"trigger_multiple"))
    {
        
SDKHook(entitySDKHook_StartTouchOnTrigger);
        
SDKHook(entitySDKHook_EndTouchOnTrigger);
        
SDKHook(entitySDKHook_TouchOnTrigger);
    }
    else if(
StrEqual(classname"trigger_hurt"))
    {
        
SDKHook(entitySDKHook_StartTouchOnTrigger);
        
SDKHook(entitySDKHook_EndTouchOnTrigger);
        
SDKHook(entitySDKHook_TouchOnTrigger);
    }
    else if(
StrEqual(classname"trigger_push"))
    {
        
SDKHook(entitySDKHook_StartTouchOnTrigger);
        
SDKHook(entitySDKHook_EndTouchOnTrigger);
        
SDKHook(entitySDKHook_TouchOnTrigger);
    }
}

public 
Action OnTrigger(int entityint other)
{
    if (
other <= MaxClients)
    {
        
StopEmote(other);
    }
    return 
Plugin_Continue;

__________________
NanoC is offline
Send a message via Skype™ to NanoC
S7Jinzo
Junior Member
Join Date: Dec 2019
Old 04-04-2020 , 01:40   Re: [CS:GO] Fortnite Emotes Extended version (dances and emotes)[updated 7-Feb-2020]
Reply With Quote #137

Just want to say that...

This is the funniest mod I´ve ever tested.

Nice Job!
S7Jinzo is offline
eliteroyal
AlliedModders Donor
Join Date: Dec 2016
Location: Moldova
Old 04-04-2020 , 02:32   Re: [CS:GO] Fortnite Emotes Extended version (dances and emotes)[updated 7-Feb-2020]
Reply With Quote #138

well, at least for multi1v1 it doesnt work
__________________
PEACE FROM MOLDOVA
eliteroyal is offline
paulo_crash
AlliedModders Donor
Join Date: May 2016
Location: Brazil
Old 04-04-2020 , 06:04   Re: [CS:GO] Fortnite Emotes Extended version (dances and emotes)[updated 7-Feb-2020]
Reply With Quote #139

Quote:
Originally Posted by eliteroyal View Post
well, at least for multi1v1 it doesnt work
I use it on my multi-1v1, it works normal.
paulo_crash is offline
Kryogene
New Member
Join Date: Jan 2020
Old 04-05-2020 , 10:54   Re: [CS:GO] Fortnite Emotes Extended version (dances and emotes)[updated 7-Feb-2020]
Reply With Quote #140

still need more dances xD
i mean the scenario dance isnt there
and i love that dance
Kryogene 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 10:22.


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