CS:GO VScript Examples
Jump to navigation
Jump to search
The following are example vscripts for Counter-Strike: Global Offensive.
Find the closest player to a known entity
buttonReference <- Entities.FindByName( null, "button_01" ); // find the in-game entity "button_01" and store its targetname
player <- Entities.FindByClassnameNearest( "player", buttonReference.GetOrigin(), 512 ); // find the nearest player within 512 hammer units to the button's origin and create a variable.
[Todo]
See also
External links
- Squirrel (programming language) - Wikipedia Article on Squirrel
Squirrel: The Programming Language - Documentation and Sample Code