AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Code Snippets/Tutorials (https://forums.alliedmods.net/forumdisplay.php?f=83)
-   -   [ZP][TUT] Bots can break sandbag and attack npc boss (https://forums.alliedmods.net/showthread.php?t=337653)

theqramboq 05-05-2022 04:04

[ZP][TUT] Bots can break sandbag and attack npc boss
 
2 Attachment(s)
1. add into plugin
Code:

#include <sypb>
2. add into plugin "sypb_set_entity_action (index, team, action)"


index: Entity id
-1 is del all entity action
team: Entity Team
0 = No Team, 1 = TR, 2 = CT
action: Bot Action
1 = Enemy, Bot Will Attack Entity
(Work on Different teams, eg TR bot attack No Team and CT Team Entity)
2 = Avoid, Bot Will Avoid Entity (eg, avoid hegrenade)
(Work on Different teams, eg TR bot Avoid No Team and CT Team Entity)
3 = Move, Bot Will Move To Entity (eg, move to and pickup the weapon)
(Work on Same teams, eg TR bot Move To No Team and TR Team Entity)
-1 is del the entity action

Exampe sandbag:

Code:


public place_palletwbags(id)
{
        new EXAMPLE = engfunc(EngFunc_CreateNamedEntity, engfunc(EngFunc_AllocString, "func_wall"));
       
        set_pev(EXAMPLE ,pev_classname,"amxx_pallets");
       
        sypb_set_entity_action(EXAMPLE , 1, 1) // bots can attack sandbag

}

Example alien boss:

Code:

public Game_Start()
{
        if(pev_valid(Alien_Ent))
                engfunc(EngFunc_RemoveEntity, Alien_Ent)
       
        static Alien; Alien = engfunc(EngFunc_CreateNamedEntity, engfunc(EngFunc_AllocString, "info_target"))
       
        sypb_set_entity_action(Alien, 0, 1)  // bots can attack alien boss
}


3. Sypb links:


HTML Code:

https://ccnhsk-dev.blogspot.com/2017/03/sypbvBeta1.49.html
https://ccnhsk-dev.blogspot.com/2017/01/swnpcvBeta1.48.html
https://ccnhsk-dev.blogspot.com/2017/01/sypb-api-for-amxx-148-available.html

4.Sypb useful codes

Code:

0:Normal 1:Deathmatch 2:Zombie plague 3:NPC Boss 4:ZH
sypb_gamemode 2


https://www.youtube.com/watch?v=KOAAN6dmpWI

https://www.youtube.com/watch?v=i3cGQ6dgOZQ

Celena Luna 05-09-2022 20:58

Re: [ZP][TUT] Bots can break sandbag and attack npc boss
 
This only work with SyPB btw


All times are GMT -4. The time now is 08:29.

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