All public logs
Jump to navigation
Jump to search
Combined display of all available logs of NPC for VCMP 0.4 Servers. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 10:00, 26 September 2024 Habi talk contribs deleted page Deck Building in Round Rock (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 10:00, 26 September 2024 Habi talk contribs deleted page Polkadot chocolate (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:58, 26 September 2024 Habi talk contribs deleted page Puffing billy train ride melbourne (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:56, 26 September 2024 Habi talk contribs deleted page Mexico real estate (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:52, 26 September 2024 Habi talk contribs deleted page AR trigger (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:51, 26 September 2024 Habi talk contribs deleted page Packwoods x runtz420 (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:51, 26 September 2024 Habi talk contribs deleted page Alexanderbrothersextorted.com (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:50, 26 September 2024 Habi talk contribs deleted page Exchange cryptocurrency963 (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:50, 26 September 2024 Habi talk contribs deleted page Novo bar al9000 (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:48, 26 September 2024 Habi talk contribs deleted page Prouds jewellers near cbd melbourne (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:48, 26 September 2024 Habi talk contribs deleted page Amanda Ghost madam (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:47, 26 September 2024 Habi talk contribs deleted page CVA Paramount (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:47, 26 September 2024 Habi talk contribs deleted page Slot (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:45, 26 September 2024 Habi talk contribs deleted page Puffing billy railway ticket price (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:45, 26 September 2024 Habi talk contribs deleted page Wyld gummie (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:44, 26 September 2024 Habi talk contribs deleted page Anabolic Steroids (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:44, 26 September 2024 Habi talk contribs deleted page CVA Wolf (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:42, 26 September 2024 Habi talk contribs deleted page Craigflanders (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:42, 26 September 2024 Habi talk contribs deleted page Jewelry stores perth cbd (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:40, 26 September 2024 Habi talk contribs deleted page Alexanderbrothersextortedcom (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:39, 26 September 2024 Habi talk contribs deleted page Male prostitute craig flanders (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:39, 26 September 2024 Habi talk contribs deleted page Waffenshop (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:37, 26 September 2024 Habi talk contribs deleted page Craig flanders male escort (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:37, 26 September 2024 Habi talk contribs deleted page Wetter Cannobio (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:37, 26 September 2024 Habi talk contribs deleted page Therapist fairfax va (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 09:36, 26 September 2024 Habi talk contribs deleted page Polka dot mushroom chocolate797 (Spam: Mass deletion of pages added by PhilippinesBacklinkservice)
- 05:05, 6 September 2024 Habi talk contribs created page AmISpawned (Created page with "{{Welcome| desc=This function checks whether the npc is currently spawned.| params=NoParams| example=<source lang="lua"> function OnPlayerText(playerid, message) { if(message== "John") { if(AmISpawned()) { SendChat("Yes dear."); } else { SendChat("I'm not spawned lilly"); } } } </source>| relfuncs=*RequestSpawn| retvals=Returns true if the npc is spawned, false otherwise.| }}")
- 04:59, 6 September 2024 Habi talk contribs created page LookAtPlayer (Created page with "{{Welcome| desc=The function sets the angle of the npc to that of the specified player, making the npc face the player.| params=<syntaxhighlight lang="lua">(playerid)</syntaxhighlight> <poem>::playerid : The ID of the player the npc will face.</poem>| example=<source lang="lua"> function OnPlayerText(playerid, message) { if(message=="lookAtMe") { if(GetDistanceFromMeToPoint(GetPlayerPos(playerid))<100.0) { LookAtPlayer(playerid); } } } </source>| relfuncs=*...")
- 04:39, 6 September 2024 Habi talk contribs created page GetMyHealth (Created page with "{{Welcome| desc=This function returns the current health of the npc as an integer.| params=<syntaxhighlight lang="lua"> ()</syntaxhighlight> <poem>::NoParams</poem>| example= <poem> Possible implementation: The following npc uses a timer and send chat 'i need medic' when it's health goes down to 25. </poem> <source lang="lua"> timerid<-null; function OnNPCSpawn() { if(!timerid) //precaution for double timers { SetTimer("CheckHealth",10000,1); } } function Check...")
- 04:27, 6 September 2024 Habi talk contribs created page SetMyHealth (Created page with "{{Welcome| desc=This function sets the npc's health to the specified value. If the health is set to 0, the npc will commit suicide.| params=<syntaxhighlight lang="lua"> (newHealth)</syntaxhighlight> <poem>::newHealth : An integer value representing the new health level to set.</poem>| example=<source lang="lua"> The following code possibly decrease npc's health by 5 when 'a player goes near it and says "boo" '. The npc also sends chat 'poor me' after decreasing health. f...")
- 17:09, 8 February 2024 Habi talk contribs created page GetMyClass (Created page with "{{v1_8_beta}} {{Welcome|desc=Returns the class ID of the npc. Returns negative values (-1,-2,..) if RequestClass was used with <source inline>CLASS_PREVIOUS</source> instead of <source inline>CLASS_NEXT</source>. If one cycle of all available classes has been visited, then this function returns non-negative values.| params=<source>NoParams</source>| retvals=The class ID as negative or non-negative integer| relfuncs=*RequestClass *Suicide *OnNPCClassSelect...")
- 15:45, 7 February 2024 Habi talk contribs created page RequestClassAbs (Created page with "{{v1_8_beta}} {{Welcome|desc=Request a class by specifying its absolute class ID (0,1,2,3,4,..) rather than choosing it relatively (-1,0,1) through RequestClass. This function must be called when npc is not spawned. Calling it when npc is spawned has no effect.| params=<source lang="lua">(classId)</source> <poem> :: classId : The ID of the class to select </poem>| retvals=true, on success and false, on failure (classId out of range)| example=<source lang="lua"> </so...")
- 15:45, 5 February 2024 Habi talk contribs created page SetConfig (Created page with "{{v1_8_beta}} {{Welcome|desc=Changes automatic behaviour of npc on events like player stream in or skin is changed by server| params=<source lang="lua">(value)</source> <poem> :: value - An integer from following table which can be combined using bitwise OR {| class="wikitable" |+ SetConfig Function Features ! Configuration Value !! Feature !! Description |- | 1 || Sends an onfoot-packet to server || Whenever a player streams in. When an NPC is inside a vehicle, nothing...")
- 14:49, 4 February 2024 Habi talk contribs created page Server.cfg (Created page with "== server.cfg Configuration Properties == === max_npc === * '''Description:''' Limits the number of NPCs (Non-Player Characters) in the server. * '''Usage:''' Add the following line to your `server.cfg` file: <pre> max_npc <value> </pre> * '''Accepted Values:''' * `0` to `100`: Limits the number of NPCs to the specified value. * `-1`: Allows any number of NPCs (unlimited). * '''Example:''' <pre> max_npc 50 </pre> === recdir === * '''Description:''...")
- 15:23, 28 January 2024 Habi talk contribs created page ConnectMultipleNpcs (Created page with "{{v1_8_beta}} {{Welcome|desc=Opens a .hrec_file and starts connecting npcs using name present in the file.| params=<source>(filename,host="127.0.0.1",flags=7,execArg="")</source> <poem> :: filename : The name of the hrec file without the ".hrec" extension. The file must be present in the recordings/a_server/ folder. :: host : The IP address of the server to connect the npcs. :: flags : {| class="wikitable" |+ Flag Table ! Flag !! Description |- | AUTOMATIC_PLAY || St...")
- 14:35, 27 January 2024 Habi talk contribs created page .hrec file (Created page with "{| class="wikitable" |+ .hrec File Structure |- ! Field !! Description |- | Unsigned Int (4 bytes) - Magic || 9000 (Identifier for the file) |- | uint32_t (4 bytes) - Time (as ticks) || Time information in ticks |- | uint16_t (2 bytes) - Length of Filename || Length of the filename that follows |- | char* (variable length) - Filename || Variable-length character array storing the filename |- | char* (24 bytes) - Playername || Fixed-size character array (24 bytes) represe...")
- 16:51, 24 January 2024 Habi talk contribs created page File:Logfile-sample.png
- 16:51, 24 January 2024 Habi talk contribs uploaded File:Logfile-sample.png
- 16:46, 24 January 2024 Habi talk contribs created page File:Logfiles of npcs.png
- 16:46, 24 January 2024 Habi talk contribs uploaded File:Logfiles of npcs.png
- 16:35, 24 January 2024 Habi talk contribs created page File:Log file of npcs connected without console.png
- 16:35, 24 January 2024 Habi talk contribs uploaded File:Log file of npcs connected without console.png
- 15:29, 18 January 2024 Habi talk contribs created page File:Rcon screenshot.png
- 15:28, 18 January 2024 Habi talk contribs uploaded File:Rcon screenshot.png
- 18:50, 19 December 2023 Habi talk contribs created page File:Rec example.png
- 18:50, 19 December 2023 Habi talk contribs uploaded File:Rec example.png
- 14:51, 14 December 2023 Habi talk contribs created page GetObjectRotation (Created page with "<poem style="border: 2px solid #d6d2c5; background-color: #f9f4e6; padding: 1em;"> This function was added in v1.7 beta and will not work in previous versions. </poem> {{Welcome|desc=Gets the rotation of an object| params=<source>(objectid)</source> objectid : The ID of the object whose rotation is to be calculated.| retvals=The rotation of the object as quaternion. Throws error if object with specified ID does not exist. relfuncs= *IsObjectStreamedIn *GetObjectPos...")
- 14:49, 14 December 2023 Habi talk contribs created page GetObjectAlpha (Created page with "<poem style="border: 2px solid #d6d2c5; background-color: #f9f4e6; padding: 1em;"> This function was added in v1.7 beta and will not work in previous versions. </poem> {{Welcome|desc=Gets the alpha value of a object| params=<source>(objectid)</source> objectid : The ID of the object to retrieve the alpha value for.| retvals=The alpha value of the object. Throws error if object with the specified ID does not exist.| relfuncs= *IsObjectStreamedIn *GetObjectPos *G...")
- 14:48, 14 December 2023 Habi talk contribs created page GetObjectPos (Created page with "<poem style="border: 2px solid #d6d2c5; background-color: #f9f4e6; padding: 1em;"> This function was added in v1.7 beta and will not work in previous versions. </poem> {{Welcome|desc=Gets the position of a object| params=<source>(objectid)</source> objectid : The ID of the object to retrieve the position for.| retvals=A Vector containing the x, y, and z coordinates of the object's position. Throws error if object with the ID is not found| relfuncs= *[[IsObjectStreamedIn]...")
- 14:45, 14 December 2023 Habi talk contribs created page GetObjectModel (Created page with "<poem style="border: 2px solid #d6d2c5; background-color: #f9f4e6; padding: 1em;"> This function was added in v1.7 beta and will not work in previous versions. </poem> {{Welcome|desc=Gets the model of a pickup| params=<source>(objectid)</source> pickupid : The ID of the object to retrieve the model for.| retvals=The model ID of the object.| relfuncs= *IsObjectStreamedIn *GetObjectModel }}")