AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Unapproved Plugins (https://forums.alliedmods.net/forumdisplay.php?f=109)
-   -   [CS:GO] Fortnite Emotes Demo (v1.0.2, 20 Sep 2019) (https://forums.alliedmods.net/showthread.php?t=318595)

Virginia 09-08-2019 21:45

[CS:GO] Fortnite Emotes Demo (v1.0.2, 20 Sep 2019)
 


Description
This plugin allows players to use emotes from Fortnite. Type !emotes in chat and choose an emote.
There are 5 emotes, some of them with music. There is a 4s cooldown for emotes. Players can't move during the animation. You can cancel emote with right/left mouse button, crouch or use. It works with any player model that uses latest skeleton (after reanimated update).


Credits:
xFlane for main function idea and code.
Yoda for knife & taser & nades save and disarm function.
Alex Dragokas for some code from his plugin that i used.

Special Thanks:
1337norway, CrazyBoy and KillStr3aK for some help with the plugin. And thanks to RuFa for a lot of testing!

Requirements:
  • You will need SMLIB to compile.

Changelog:
Code:

v1.0.2 (20.09.2019)

-Fixed endless cooldown bug
-Fixed a bug when players could get wrong ammo and clip size for their weapons
-Fixed a glitch with infinite ammo for taser
-Players no longer save their weapons if they were killed by bomb
-Players now drop their weapon after death
-Added cvars for cooldown, sound and for saving weapons after round end

v1.0.1 (12.09.2019)

-If you're using an emote while standing on player's head and this player goes away, the emote will stop
-Players' weapons are no longer saved after warm up and half time
-Fixed flashbang amount not saving
-Fixed grenade dupe
-Fixed pistols were not saving properly if player was dancing during round end
-Added version of plugin without disarm and rearm functions for servers using custom gamemodes and having troubles with weapons not saving properly(fortnite_emotes_demo_c archive inside the main archive)

v1.0 (08.09.2019)

-Initial Release


backwards 09-09-2019 00:22

Re: [CS:GO] Fortnite Emotes Demo
 
Really Nice!

raj kaul 09-09-2019 01:05

Re: [CS:GO] Fortnite Emotes Demo
 
this is lit dude ..very nice

8guawong 09-09-2019 02:23

Re: [CS:GO] Fortnite Emotes Demo
 
lol this plugin is awesome

Sincronic 09-09-2019 03:10

Re: [CS:GO] Fortnite Emotes Demo
 
nice ! Working on my servers ! Nice job !

September 09-09-2019 07:59

Re: [CS:GO] Fortnite Emotes Demo
 
great work!

Y00k 09-09-2019 09:25

Re: [CS:GO] Fortnite Emotes Demo
 
lit

savage 09-09-2019 09:27

Re: [CS:GO] Fortnite Emotes Demo
 
:shock::shock:
Quote:

Originally Posted by Virginia (Post 2666354)


Description
This plugin allows players to use emotes from Fortnite. Type !emotes in chat and choose an emote.
There are 5 emotes, some of them with music. There is a 4s cooldown for emotes. Players can't move during the animation. You can cancel emote with right/left mouse button, crouch or use. It works with any player model that uses latest skeleton (after reanimated update).

This is just a demo plugin, so i expect that you will edit it for your needs. Feel free to edit anything or to make your own plugin based on functions from this plugin.

I also have private animset with 85 unique emotes. If you want some new emotes that are missing from that animset, i can port them for some money. Contact me: https://steamcommunity.com/id/kodua/

Credits:
xFlane for main function idea and code, Alex Dragokas for some code from his plugin that i used.

Special Thanks:
1337norway, CrazyBoy and KillStr3aK for some help with the plugin. And thanks to RuFa for a lot of testing!

Requirements:
  • You will need SMLIB to compile.

TODO:
  • Change the way how sound works if people will complain.
  • Make a store/shop version


Y00k 09-09-2019 09:30

Re: [CS:GO] Fortnite Emotes Demo
 
Can I buy private pack of 85 emotes?

Peace-Maker 09-09-2019 09:43

Re: [CS:GO] Fortnite Emotes Demo
 
lol, this is great. Bonemerging opens up so many possibilities. :D

Nexd 09-09-2019 10:52

Re: [CS:GO] Fortnite Emotes Demo
 
I hope we will meet in other projects too^^

NanoC 09-09-2019 11:15

Re: [CS:GO] Fortnite Emotes Demo
 
my godness this is awesome, good job

szogun 09-09-2019 12:10

Re: [CS:GO] Fortnite Emotes Demo
 
I don't know what I'm doing wrong, but my characters don't dance
It looks just like on screenshot

https://zapodaj.net/images/e7ed477cc9bc7.jpg

einsfuhrer 09-09-2019 13:37

Re: [CS:GO] Fortnite Emotes Demo
 
How do I change the length of the sound. I want to lower how far away the sound is going. How do I do that?

einsfuhrer 09-09-2019 13:51

Re: [CS:GO] Fortnite Emotes Demo
 
I also got some bugs that you should fix.

- If someone jumps on someones head, then dance. And then the player under moves away, the player above will float in the air: https://gyazo.com/c6d03c70fba3aa77afaa76a858cbb23a

- If you buy a grenade, then throw it and then emote. You will get your nade back.

- If you emote at a place on the map, then the enemy team will see you in the center of the map, on the radar: http://prntscr.com/p3wlka

Nexd 09-09-2019 14:24

Re: [CS:GO] Fortnite Emotes Demo
 
PHP Code:

stock bool IsClientCrouching(int client)
{
    if(
GetEntityFlags(client) & FL_DUCKING)
        return 
true;

    return 
false;
}

stock bool IsClientIsOnGround(int client)
{
    if(
GetEntityFlags(client) & FL_ONGROUND)
        return 
true;

    return 
false;



einsfuhrer 09-09-2019 14:44

Re: [CS:GO] Fortnite Emotes Demo
 
Quote:

Originally Posted by Nexd (Post 2666435)
PHP Code:

stock bool IsClientCrouching(int client)
{
    if(
GetEntityFlags(client) & FL_DUCKING)
        return 
true;

    return 
false;
}

stock bool IsClientIsOnGround(int client)
{
    if(
GetEntityFlags(client) & FL_ONGROUND)
        return 
true;

    return 
false;



Where should I put that? Like on which row?

greatblader 09-10-2019 05:26

Re: [CS:GO] Fortnite Emotes Demo
 
Hi, i am using this plugin but i encountered one issue together with the Advanced Noscop plugin. Whenever someone noscope another player who is doing the emote, the distance goes like 300m although the noscop happened literally 1m away. I tested it with other emotes and it seems to be bugged with long distance like 200m and 300m. Any help?

Virginia 09-10-2019 05:27

Re: [CS:GO] Fortnite Emotes Demo
 
Quote:

Originally Posted by einsfuhrer (Post 2666427)
How do I change the length of the sound. I want to lower how far away the sound is going. How do I do that?

Line 265
Code:

EmitSoundToAll(g_sEmoteSound[client], EmoteSoundEnt, SNDCHAN_AUTO, SNDLEVEL_CONVO, _, 0.8, _, _, vec, _, _, _);
Try changing SNDLEVEL_CONVO to SNDLEVEL_HOME, SNDLEVEL_FRIDGE or SNDLEVEL_LIBRARY. But the player who is using the emote will hear it lower too, so i think SNDLEVEL_CONVO is the best setting.

Virginia 09-10-2019 06:04

Re: [CS:GO] Fortnite Emotes Demo
 
Quote:

Originally Posted by einsfuhrer (Post 2666432)
I also got some bugs that you should fix.

- If someone jumps on someones head, then dance. And then the player under moves away, the player above will float in the air: https://gyazo.com/c6d03c70fba3aa77afaa76a858cbb23a

- If you buy a grenade, then throw it and then emote. You will get your nade back.

- If you emote at a place on the map, then the enemy team will see you in the center of the map, on the radar: http://prntscr.com/p3wlka

1) I already fixed that, will update plugin in few days.

2) I'm still investigating that.

3) Not sure why this happens atm.

TheBOSS 09-10-2019 08:10

Re: [CS:GO] Fortnite Emotes Demo
 
1) I use kgns gloves plugin, when start emotes hide gloves
2) sometime appear weapon in emotes and sometime gone!

Virginia 09-10-2019 09:05

Re: [CS:GO] Fortnite Emotes Demo
 
Quote:

Originally Posted by TheBOSS (Post 2666508)
1) I use kgns gloves plugin, when start emotes hide gloves
2) sometime appear weapon in emotes and sometime gone!

Isn't this plugin against Valve rules?

einsfuhrer 09-10-2019 09:13

Re: [CS:GO] Fortnite Emotes Demo
 
Quote:

Originally Posted by Virginia (Post 2666522)
Isn't this plugin against Valve rules?

If course it's against Valve, but like 50% of all servers have !knife and !ws, also !gloves

einsfuhrer 09-10-2019 09:24

Re: [CS:GO] Fortnite Emotes Demo
 
Here's another issue:

- If you buy a AK-47 in warmup, and then have it, then emote until the game starts. You will have the AK-47 in the next round (on pistol round).

Virginia 09-10-2019 09:47

Re: [CS:GO] Fortnite Emotes Demo
 
Quote:

Originally Posted by einsfuhrer (Post 2666527)
Here's another issue:

- If you buy a AK-47 in warmup, and then have it, then emote until the game starts. You will have the AK-47 in the next round (on pistol round).

I will fix this in 1-2 days.

einsfuhrer 09-10-2019 10:32

Re: [CS:GO] Fortnite Emotes Demo
 
Quote:

Originally Posted by Virginia (Post 2666528)
I will fix this in 1-2 days.

Awesome, if this plugin works without bugs, it's going to be so awesome!

napster_10 09-10-2019 20:06

Re: [CS:GO] Fortnite Emotes Demo
 
SICK!!!!

tested it but have some bugs:
- sometimes ct model has no hands
- on deathmatch server after emote the gun (f.e. ak47) has no playermodel arms and you canot shoot anymore nor switch to pistol

Alexunder 09-10-2019 20:25

Re: [CS:GO] Fortnite Emotes Demo
 
Quote:

Originally Posted by napster_10 (Post 2666602)
SICK!!!!

tested it but have some bugs:
- sometimes ct model has no hands
- on deathmatch server after emote the gun (f.e. ak47) has no playermodel arms and you canot shoot anymore nor switch to pistol

dude we say all bug this plugin , just w8 for update !
he know what to do :) , just w8 :shock:

raj kaul 09-11-2019 04:05

Re: [CS:GO] Fortnite Emotes Demo
 
Quote:

Originally Posted by napster_10 (Post 2666602)
SICK!!!!

tested it but have some bugs:
- sometimes ct model has no hands
- on deathmatch server after emote the gun (f.e. ak47) has no playermodel arms and you canot shoot anymore nor switch to pistol

no hands is not bug .. its not supporting !gloves plugin thats why you are facing that issue
also he will update this plugin in few days

savage 09-11-2019 05:52

Re: [CS:GO] Fortnite Emotes Demo
 
where i can find "sm plugin file"

try to install SMLIB
help :(:cry:

uraganas 09-11-2019 14:55

Re: [CS:GO] Fortnite Emotes Demo
 
Price of private pack?

PorcusorulMagic 09-13-2019 07:12

Re: [CS:GO] Fortnite Emotes Demo (v1.0.1, 12 Sep 2019)
 
Now it looks like Team Fortress 2 ,btw good job

Alexunder 09-13-2019 09:17

Re: [CS:GO] Fortnite Emotes Demo (v1.0.1, 12 Sep 2019)
 
glove is not show :(

Virginia 09-13-2019 09:57

Re: [CS:GO] Fortnite Emotes Demo (v1.0.1, 12 Sep 2019)
 
Quote:

Originally Posted by Alexunder (Post 2666829)
glove is not show :(

It does not support !gloves plugin.

Alexunder 09-13-2019 13:51

Re: [CS:GO] Fortnite Emotes Demo (v1.0.1, 12 Sep 2019)
 
Quote:

Originally Posted by Virginia (Post 2666831)
It does not support !gloves plugin.

why dude , 90% sv use that

Virginia 09-13-2019 14:43

Re: [CS:GO] Fortnite Emotes Demo (v1.0.1, 12 Sep 2019)
 
Quote:

Originally Posted by Alexunder (Post 2666852)
why dude , 90% sv use that

First of all i can't even test it, because if i will install !gloves plugin on my server it could be banned, and i don't want that. You can try to edit emotes demo plugin and adapt it for !gloves if you want...

xFlane 09-13-2019 14:48

Re: [CS:GO] Fortnite Emotes Demo (v1.0.1, 12 Sep 2019)
 
Nice release :)

Alexunder 09-13-2019 19:00

Re: [CS:GO] Fortnite Emotes Demo (v1.0.1, 12 Sep 2019)
 
Quote:

Originally Posted by Virginia (Post 2666868)
First of all i can't even test it, because if i will install !gloves plugin on my server it could be banned, and i don't want that. You can try to edit emotes demo plugin and adapt it for !gloves if you want...

no dude ! gslt ban is stop ! 3 years my servers have ws knife glove ... xD
i can give you ftp for management server , dude your plugin is so amazing for csgo player , but if you can fix show glove , very good !

first time emote glove is don't have any problem , when we use emote again , glove is hide ! (no arms)

+sorry for bad english , i always try ...

napster_10 09-13-2019 20:23

Re: [CS:GO] Fortnite Emotes Demo (v1.0.1, 12 Sep 2019)
 
thx for fixing the issue with 3rd party gunmenus

i can provide a testserver aswell if you think you can fix the gloves thing..would be dope tho

did anyone test this with kztimer? its not working for me. the playermodel is just standing still no dances :(

Fearts 09-13-2019 23:51

Re: [CS:GO] Fortnite Emotes Demo (v1.0.1, 12 Sep 2019)
 
Would this be possible to port to all 9 of the TF2 classes? If so would this be something you would be willing to do for payment?


All times are GMT -4. The time now is 11:22.

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