AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Extensions (https://forums.alliedmods.net/forumdisplay.php?f=134)
-   -   [CS:S/CS:GO] Bot Attack Control (https://forums.alliedmods.net/showthread.php?t=220118)

Zeisen 06-08-2017 13:25

Re: [CS:S/CS:GO] Bot Attack Control
 
[SM] Unable to load extension "botattackcontrol.ext": Detour failed: CCSPlayer::IsOtherEnemy

it happened on gamedata by byte(invex).

GoD-Tony 06-09-2017 04:53

Re: [CS:S/CS:GO] Bot Attack Control
 
The latest gamedata is in the first post. If you're on CS:GO & Windows then you'll need the latest build as well.

Zeisen 06-09-2017 05:38

Re: [CS:S/CS:GO] Bot Attack Control
 
Quote:

Originally Posted by GoD-Tony (Post 2527279)
The latest gamedata is in the first post. If you're on CS:GO & Windows then you'll need the latest build as well.

it works, thank you!

Zeisen 06-11-2017 07:07

Re: [CS:S/CS:GO] Bot Attack Control
 
it works fine, but there is problem.

sometimes few bots attacks his teammate. even though i didn't script to attack teammate. seems like it's bug.

GoD-Tony 06-13-2017 01:48

Re: [CS:S/CS:GO] Bot Attack Control
 
Quote:

Originally Posted by Zeisen (Post 2527803)
it works fine, but there is problem.

sometimes few bots attacks his teammate. even though i didn't script to attack teammate. seems like it's bug.

Mind PM'ing me your code? I'll take a look.

Zeisen 06-13-2017 04:49

Re: [CS:S/CS:GO] Bot Attack Control
 
Quote:

Originally Posted by GoD-Tony (Post 2528248)
Mind PM'ing me your code? I'll take a look.

Code:

public Action OnShouldBotAttackPlayer(bot, player, &bool:result)
{       
        if (ignore_bot_list[player])
        {
                result = false;
                return Plugin_Changed;
        }
        if (bot_ignore_time[bot] >= GetGameTime())
        {
                result = false;
                return Plugin_Changed;
        }
        if (GetEntityMoveType(bot) & MOVETYPE_LADDER)
        {
                result = false;
                return Plugin_Changed;
        }
        return Plugin_Continue;
}

i'm sure on that code was fine before update your extension.

Zeisen 10-23-2017 20:55

Re: [CS:S/CS:GO] Bot Attack Control
 
I found what is bug exactly. (in CS:GO)

It happened only terrorlist bots. they looking each other. and sometimes attack to his teammates.

Edit: I found more bug. i coded like this.

Code:

public Action OnShouldBotAttackPlayer(bot, player, &bool:result)
{       
        result = true;
        return Plugin_Changed;
}

they shoot each other. but bot terrorlists can kill each other. even though i set mp_friendlyfire convar to 0.

Zeisen 10-23-2017 22:48

Re: [CS:S/CS:GO] Bot Attack Control
 
1 Attachment(s)
I fixed myself. but still there is issue terrorlist bot can kill each other.

Tank_in_Pink 01-29-2018 09:16

Re: [CS:S/CS:GO] Bot Attack Control
 
Hey guys,

I've never seen a plugin like this. Can please somebody explain how I install and configure it for my CSGO server?
I only know Sourcemod plugins with a folder structure like csgo/addons/sourcemod/plugins :/

Thanks already :3

Renney 10-14-2018 13:01

Re: [CS:S/CS:GO] Bot Attack Control
 
need an update


All times are GMT -4. The time now is 20:06.

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