Main Page: Difference between revisions
Jump to navigation
Jump to search
Tag: Rollback |
Tag: Undo |
||
Line 30: | Line 30: | ||
* [[OnVehicleStreamOut]] | * [[OnVehicleStreamOut]] | ||
* [[OnRecordingPlaybackEnd]] | * [[OnRecordingPlaybackEnd]] | ||
* [[OnPlayerUpdate]] | |||
* [[OnSniperRifleFired]] | |||
* [[OnConsoleInput]] | |||
|| | || | ||
* [[StartRecordingPlayback]] | * [[StartRecordingPlayback]] | ||
Line 44: | Line 47: | ||
* [[IsVehicleStreamedIn]] | * [[IsVehicleStreamedIn]] | ||
* [[IsPlayerStreamedIn]] | * [[IsPlayerStreamedIn]] | ||
==Advanced functions(v1.5+)== | |||
* [[SendOnFootSyncData]] | |||
* [[SendOnFootSyncDataLV]] | |||
* [[SendPassengerSyncData]] | |||
* [[FireSniperRifle]] | |||
* [[SendShotInfo]] | |||
* [[SendDeathInfo]] | |||
== Functions used only within gamemode== | == Functions used only within gamemode== | ||
* [[ConnectNPC]] | * [[ConnectNPC]] | ||
Line 51: | Line 61: | ||
* [[SquirrelPlugin|Squirrel Add-On Plugin]] | * [[SquirrelPlugin|Squirrel Add-On Plugin]] | ||
*[[NPC Installation]] | *[[NPC Installation]] | ||
* [[Squirrel Standard Library Functions]] | |||
* [[ | * [[Command-line usage]] | ||
*[[ | * [[Attack Script]] | ||
* [[ | |||
|} | |} | ||
</big> | </big> |
Revision as of 17:22, 1 January 2023
Introduction
NPCs also known as bots -feature introduced in April 2022 in vc-mp forum. This new feature allows you to create NPCs inside your server who will work like virtual players. Like normal players, they use server slot. Their actions are scripted by squirrel scripts. These scripts with 'artificial intelligence' of NPC reside in npcscripts directory. If you want to have 10 different NPC doing 10 different things, you might want to script 10 different scripts.
Each NPC run in its own process. This might make their usage and working economical. The NPC scripts have functions as well as callbacks.
NPC script callbacks |
NPC script functions |
Advanced functions(v1.5+)
Functions used only within gamemodeMore |