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

Showing results 1 to 24 of 24
Search took 0.00 seconds.
Search: Posts Made By: Bugsy
Forum: Suggestions / Requests 08-16-2021, 19:00
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Fixed. The problem was when I changed over the damage display to at spawn, the players have 100hp again, I didn't take this into consideration.
...
Forum: Suggestions / Requests 08-16-2021, 11:28
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

But being named pev_dmg_take, I interpreted it as the damage taken/loss in hp. This is the cause of the plugin returning the incorrect values...which has now been addressed.
Forum: Suggestions / Requests 08-16-2021, 10:25
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

I don't think it takes a victims health into consideration, it just gives what the total damage would be.
Forum: Suggestions / Requests 08-16-2021, 00:38
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

It should be fixed now

https://forums.alliedmods.net/showpost.php?p=2755018&postcount=22
Forum: Suggestions / Requests 08-15-2021, 20:46
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

I didn't test thoroughly before posting the updates, and pev_dmg_take does not return what I though it did, that's the main reason. We are staying on topic so I don't see an issue.
Forum: Suggestions / Requests 08-15-2021, 17:15
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

The code at the below location is fixed. I was disabling the damage recording at round end, and when it came to the last player, round end was triggering before the damage done to the last player...
Forum: Suggestions / Requests 08-14-2021, 11:48
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

I didn't change the calculation, give an example
Forum: Suggestions / Requests 08-13-2021, 22:24
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

This code has been updated:

1. No damage during freeze time
2. Damage shown to each player at spawn

https://forums.alliedmods.net/showpost.php?p=2755018&postcount=22
Forum: Suggestions / Requests 08-13-2021, 16:48
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Ok, so do not count damage that occurs during freeze time AND display the message at re-spawn instead of death?
Forum: Suggestions / Requests 08-13-2021, 09:24
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Yes, I think the simplest would be to wipe the array clean at round start/end of freeze time.
Forum: Suggestions / Requests 08-12-2021, 20:48
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Try this

https://forums.alliedmods.net/showpost.php?p=2755018&postcount=22

I understood pev_dmg_take as being the loss in hp, but it is equal to full damage taken, which can exceed health.
Forum: Suggestions / Requests 08-11-2021, 22:32
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Try this

https://forums.alliedmods.net/showpost.php?p=2755018&postcount=22
Forum: Suggestions / Requests 08-11-2021, 08:18
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Ah ok, yes I have a condition where if they are dead, print 100..I'll fix
Forum: Suggestions / Requests 08-10-2021, 23:46
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

I did not add that for excluding freeze time damage. I found that ham take damage on the very last victim was not registering correctly without a delay.

Edit: I think I added that while debugging,...
Forum: Suggestions / Requests 08-10-2021, 23:18
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

@deprale - I think your comment regarding damage happening during freeze time is valid. I'm not sure why Natsheh thought otherwise. If the OP wants to exclude damage during this time window, I can...
Forum: Suggestions / Requests 08-10-2021, 23:11
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Try this:


#include <amxmodx>
#include <hamsandwich>
#include <fakemeta>

new const Version[] = "0.8";

#define MAX_PLAYERS 32
Forum: Suggestions / Requests 08-10-2021, 09:36
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Doesn't that contradict this? https://forums.alliedmods.net/showpost.php?p=2754884&postcount=16
Forum: Suggestions / Requests 08-09-2021, 14:02
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

If a victim has 10hp and I blast him in the head with an awp, do you want to see another 100 (or whatever) damage issued in, or only the 10 loss in hp? I think this is the issue .. I built this from...
Forum: Suggestions / Requests 08-09-2021, 10:07
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

1. I didn't consider the scenario where someone could hurt someone before round start. I personally still consider it as damage issued in the round.
2. clamp() would only make sense if you want to...
Forum: Suggestions / Requests 08-08-2021, 22:32
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Try this.

1. Minor update applied for get_user_health() efficiency


#include <amxmodx>
#include <hamsandwich>
#include <fakemeta>

new const Version[] = "0.2";
Forum: Suggestions / Requests 08-07-2021, 21:04
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

1. Yes, it's possible
2. If either player issued damage, it should show
Forum: Suggestions / Requests 07-27-2021, 22:29
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Try this


#include <amxmodx>
#include <hamsandwich>
#include <fakemeta>

new const Version[] = "0.1";

#define MAX_PLAYERS 32
Forum: Suggestions / Requests 07-26-2021, 11:56
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Yes, that can be done, give me a day or 2.

What do you mean by the damage isn't accurate? Is this because you see it go over 100? If so, I can clamp it at that.

Is this supposed to show all...
Forum: Suggestions / Requests 07-25-2021, 20:07
Replies: 53
Views: 5,482
Posted By Bugsy
Re: Display previous round information in chat

Just need to tweak it to chat print instead of show a HUD.

https://forums.alliedmods.net/showpost.php?p=2752933&postcount=9
Showing results 1 to 24 of 24

 
Forum Jump

All times are GMT -4. The time now is 17:56.


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