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

Showing results 1 to 25 of 115
Search took 0.01 seconds.
Search: Posts Made By: sursista
Forum: General 01-15-2024, 11:23
Replies: 8
Views: 758
Posted By sursista
Re: Smart App Control block amxxpc.exe (1.9 version)

Yes, ever. I have tried different computers and it only happens on mine, it is strange :?
Forum: General 01-15-2024, 06:06
Replies: 8
Views: 758
Posted By sursista
Smart App Control block amxxpc.exe (1.9 version)

For a week or more now, I have been having problems compiling plugins in the latest version 1.9 (Build 5294), I suppose it is a problem that the amxxpc.exe file does not have a valid signature.
...
Forum: Scripting Help 02-18-2022, 07:35
Replies: 10
Views: 1,025
Posted By sursista
Re: Save/Get multiple different values in the same variable per player

Edited: I read wrong, I'll check if this way is better

Edited 2: Problem solved. I seem to like to complicate my life when trying to create a thousand checks for a condition to be met.

I will...
Forum: Scripting Help 02-18-2022, 05:43
Replies: 10
Views: 1,025
Posted By sursista
Re: Save/Get multiple different values in the same variable per player

I will do a full debug of the plugin, it will take me some time
Forum: Scripting Help 02-18-2022, 05:36
Replies: 10
Views: 1,025
Posted By sursista
Re: Save/Get multiple different values in the same variable per player

g_count_victim_zombie/g_count_victim_human detects if the attacker has more than one assist, since when resetting the variables I only need to subtract the value to 1 for each dead victim (this way...
Forum: Scripting Help 02-17-2022, 14:58
Replies: 10
Views: 1,025
Posted By sursista
Re: Save/Get multiple different values in the same variable per player

This is a small example of what I'm trying to do, again it works, but only 70% of the time, the other 30% I either don't get assists or the name of the assist belongs to a different player (which did...
Forum: Scripting Help 02-17-2022, 08:28
Replies: 10
Views: 1,025
Posted By sursista
Save/Get multiple different values in the same variable per player

Hello, I'm doing an assist system for the ZM mod, the problem occurs when several players get an assist from the same zombie. What happens is that the variable:

name[victim][attacker] = true
...
Forum: Scripting Help 06-30-2021, 15:46
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

Thanks to everyone who has collaborated, I have been able to adapt my Sweet Revenger plugin to work with all third plugins, now it is final, it is already solved :)
Forum: Scripting Help 06-29-2021, 14:15
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

player_baz_damage(id, attacker, Float:damage) // rename with 'player' solved it? really!?
{
new Float:fHealth;
pev(id, pev_health, fHealth);

if(fHealth <= damage)
{
...
Forum: Scripting Help 06-29-2021, 13:48
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

I'm using AMXX-Studio the latest version available, I always try not to make any errors, it makes me desperate hehe, anyway thanks for the help, but don't try to make me guess if my knowledge of...
Forum: Scripting Help 06-29-2021, 13:33
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

I know what you mean, don't try be 'the clever' with me, I have been aware of the problem since this morning, but since I see that you are still playing "Guess the riddle", I try to solve it on my...
Forum: Scripting Help 06-29-2021, 09:07
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

I already tried it previously and the same error continues to occur when adapting to the zp50, I do not intend to continue with this conversation, this is a thread for help, not to debate if you have...
Forum: Scripting Help 06-29-2021, 07:07
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

Sometimes I think that this thread has lost all sense of help and has become a thread to comment without contributing anything significant, you write a plugin from scratch, to make a sample, it is...
Forum: Scripting Help 06-29-2021, 04:35
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

Your plugin no work fine, and I get tag smismatch in line 80


arrayset(g_flTOTAL_USER_DAMAGE[victim], 0.0, sizeof g_flTOTAL_USER_DAMAGE[]);


I have tested it thoroughly and it does...
Forum: Scripting Help 06-28-2021, 16:33
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

I no want wasting my time looking for help anymore

I have been able to fix it by replacing this with this:


baz_damage(id, attacker, damage, weaponDescription[])
{
if (...
Forum: Scripting Help 06-28-2021, 13:46
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

I record demo, this the bug:

https://www.youtube.com/watch?v=lvvdLYQ-5Oo

If someone can help me register attacker (kill) of the victim and thus kill him if he kills the victim

(EDITED)

I...
Forum: Scripting Help 06-28-2021, 13:00
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

czbots is same PODBOT? I use PODBOT
Forum: Scripting Help 06-28-2021, 12:55
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

public fw_TakeDamage(victim, inflictor, attacker, Float:damage, damage_type)
{
//if (flag_get(g_IsSweetRevenge, victim) && !zp_core_is_zombie(attacker))
//{
if (victim == attacker ||...
Forum: Scripting Help 06-28-2021, 12:37
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

Can you think of anything about how to solve my problem? It seems simple, but I don't know what happens, if the attacker kills the victim (zombie) with a single hit, it is not registered in

...
Forum: Scripting Help 06-28-2021, 12:03
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

I am a bit green, that part of the code I have not written, nor do I know what the number '2' means, if someone with more experience knows it, maybe we can understand it, but I suppose it will be the...
Forum: Scripting Help 06-28-2021, 11:11
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

I have removed the [SOLVED] prefix because I have found one last error and that is:

-If the victim is damaged with damage greater than her life, the bug reoccurs, even if other attackers damage...
Forum: Scripting Help 06-28-2021, 07:12
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

It seems silly but it makes sense, now I understand it, thank you very much for everything, now work! :)
Forum: Scripting Help 06-28-2021, 05:52
Replies: 36
Views: 3,070
Posted By sursista
Re: Get 'Owner' of other third entity

It seems to be working, I changed how the bazooka plugin kills its victims and now if it registers it when dying, but not when taking damage in TakeDamage:


new maxdamage =...
Forum: Scripting Help 06-27-2021, 17:19
Replies: 36
Views: 3,070
Posted By sursista
Get 'Owner' of other third entity

Hi, I haven't touched anything Pawn in many years and I'm a little green.

I want to get the owner of a third entity such as a bazooka.

The plugin works like this:

1-You buy the Item, you...
Forum: Spanish 09-07-2011, 08:48
Replies: 3
Views: 1,180
Posted By sursista
Re: Borrar Defuses Kit del Suelo al Matar a un CT

.....

lo pobre todo y nada de lo que busque funciona como yo quiero..
Showing results 1 to 25 of 115

 
Forum Jump

All times are GMT -4. The time now is 00:13.


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