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).

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 17:34, 29 October 2024 Habi talk contribs created page IsPlaybackPaused (Created page with "{{v1_8_beta}} {{Welcome|desc=This function tells whether any playback is in paused state.| params=<source>NoParams</source>| example=<source lang="lua"> if(IsPlaybackRunning()) { if(IsPlaybackPaused()) print("The playback is paused\n"); }| retvals=true, if playback is paused and false otherwise(playback is not running or running but not paused)| note=This function returns false when playback is not running| relfuncs=*IsPlaybackRunning }}")
  • 17:29, 29 October 2024 Habi talk contribs created page IsPlaybackRunning (Created page with "{{v1_8_beta}} {{Welcome|desc=This function is used to determine if the playback is running| params=<source>NoParams</source>| retvals=false, if playback is not running or paused. true otherwise| relfuncs=*IsPlaybackPaused *StartRecordingPlayback *StopRecordingPlayback *PauseRecordingPlayback *ResumeRecordingPlayback}}")
  • 17:25, 29 October 2024 Habi talk contribs created page GetMyColor (Created page with "{{v1_8_beta}} {{Welcome|desc=This function is used to find the color(r,g,b) of NPC itself.| params=<source>NoParams</source>| retvals=This function returns a table with keys <source inline>r,g,b</source>.| relfuncs=*GetPlayerColor}}")
  • 17:23, 29 October 2024 Habi talk contribs created page GetPlayerColor (Created page with "{{v1_8_beta}} {{Welcome|desc=This function is used to find the color(r,g,b) of another player(the marker in map as well as name tag).| params=<source>(playerid)</source> <poem>::playerid : The ID of the target player whose color is to be found. </poem>| retvals=This function returns a table with keys <source inline>r,g,b</source> on success and null on failure(target player does not exist)|}}")
  • 17:16, 29 October 2024 Habi talk contribs created page SendPrivMsg (Created page with "{{v1_8_beta}} {{Welcome|desc=This function sends a private message to another player.| params=<source>(playerid, message)</source> <poem> ::playerid : The ID of the target player to whom private message is to be send. ::message : The message to send. </poem>| example=<source> function OnPlayerStreamIn(playerid) { SendPrivMsg(playerid, "Come near me"); } </source>| retvals=true on success, false on failure(invalid playerid)| relfuncs=*SendChat}}")
  • 17:09, 29 October 2024 Habi talk contribs created page GetMyArmour (Created page with "{{v1_8_beta}} {{Welcome|desc=This function returns the Armour of the NPC|params=<source>NoParams</source>| example=<source> if(AmISpawned()) { print("I have armour "+GetMyArmour()+"\n"); } </source>| retvals=The Armour of npc.| relfuncs=*GetPlayerArmour *GetMyHealth}}")
  • 17:06, 29 October 2024 Habi talk contribs created page GetMyTeam (Created page with "{{v1_8_beta}} {{Welcome|desc=This function will return the team ID (0-255) of NPC.| params=<source inline>NoParams</source>|example=<source>print("My Team ID is "+ GetMyTeam()+ "\n");</source>| retvals=The Team ID of the npc|relfuncs= *GetPlayerTeam *GetMySkin|}}")
  • 17:02, 29 October 2024 Habi talk contribs created page GetMySkin (Created page with "{{v1_8_beta}} {{Welcome|Returns the skin ID of the NPC.| params=<source>NoParams</source>| example=<source inline>local myskin=GetMySkin()</source>| retvals=The Skin ID of the NPC.| relfuncs=*GetPlayerSkin|}}")
  • 16:58, 29 October 2024 Habi talk contribs created page LookAtPos (Created page with "{{Welcome| desc=This function sets the angle of npc such that it looks at the position given| params=<syntaxhighlight lang="lua"> pos</syntaxhighlight> <poem>::pos : The Vector position to which npc must look</poem>| example= The following code makes to look at player with ID 0. <source lang="lua"> LookAtPos(GetPlayerPos(0))</source>| relfuncs=*LookAtPlayer| retvals=true on success and false on failure (npc not spawned or npc is in vehicle.| }}")
  • 10:10, 23 October 2024 Habi talk contribs created page V1 8 beta4 release notes (Created page with "<poem style="border: 2px solid #d6d2c5; background-color: #ffd789; padding: 1em;"> '''Version 1.8 beta 4''' Release date : 24.October.2024 </poem> *Fixed Vehicle Driver not reset(GetVehicleDriver) when a player as driver exit the vehicle. *Added function FireBullet reenabling npc to shoot things. *API is now 1.8 *Fixed npc not able to get into vehicle as driver when player is inside vehicle as passenger. *Fixed npc not closing doors after exiting vehicle. *Npcclient can...")
  • 01:06, 13 October 2024 Habi talk contribs created page OnStoreDownloadComplete (Created page with "<poem style="border: 2px solid #d6d2c5; background-color: #f9f4e6; padding: 1em;"> This function was added in v1.8 beta 4 and will not work on previous versions. </poem> {{Welcome|desc=This function is called after OnNPCConnect when *npc finishes downloading necessary store files *all store-files were already up to date *npc was not called with options to download store| params=<source>NoParams</source>| example=<source lang=lua> function OnStoreDownloadComplete() { p...")
  • 00:57, 13 October 2024 Habi talk contribs created page IsStoreDownloading (Created page with "<poem style="border: 2px solid #d6d2c5; background-color: #f9f4e6; padding: 1em;"> This function was added in v1.8 beta 4 and will not work on previous versions. </poem> {{Welcome|desc=Tells if a store download is in progress.| params=<source>NoParams</source>| retvals=true, if a store download is in progress. false, if it has completed or not started. Also null, if npc was not called with options to download store.| relfuncs= *OnStoreDownloadComplete *GetStoreLoc...")
  • 00:51, 13 October 2024 Habi talk contribs created page GetStoreURL (Created page with "{{Welcome|desc=Gets the URL of the store contents of server, if server has configured for http-downloads.| params=<source>NoParams</source| example=<source> function OnNPCConnect(id) { print(GetStoreURL()); }</source> Output: <source inline>http://18.132.205.100/store/</source> retvals=Returns the Store-URL configured by server. Returns empty string if server has not configured http-downloads. For rel006, rel004 servers, it always returns empty string.| relfuncs= *GetS...")
  • 00:41, 13 October 2024 Habi talk contribs moved page GetStoreURL to GetStoreLocation without leaving a redirect
  • 00:29, 13 October 2024 Habi talk contribs created page GetStoreURL (Created page with ".")
  • 06:12, 8 October 2024 Habi talk contribs created page OnBulletFired (Created page with "<poem style="border: 2px solid #d6d2c5; background-color: #f9f4e6; padding: 1em;"> This function was added in v1.8 beta 4 and will not work in previous versions. </poem> <poem style="border: 2px solid #d6d2c5; background-color: #f9f4e6; padding: 1em;"> This function is exclusive for 0.4.7.1 and will not work with previous server versions like rel006 or rel004. </poem> {{Welcome|desc=This function is called when a player (or another npc) fires a bullet with weapon.| param...")
  • 04:28, 8 October 2024 Habi talk contribs created page FireBullet (Created page with "<poem style="border: 2px solid #d6d2c5; background-color: #f9f4e6; padding: 1em;"> This function was added in v1.8 beta 4 and will not work in previous versions. </poem> {{Welcome| desc=This will send a bullet-fired packet to server.| params=<syntaxhighlight lang="lua">( weaponid, posx, posy, posz)</syntaxhighlight> <poem>::weaponid: The ID of the weapon whose bullet is fired ::posx : The x co-ordinate of bullet-origin position ::posy : The y co-ordinate of bullet-origin...")
  • 09:05, 2 October 2024 Habi talk contribs deleted page ทรรศนะบอล (content was: "Furthermore, consider exploring alternative betting markets beyond just their results of the match. Including, we can wager in the wide range of goals scored, the first goalscorer, or whether both teams will score. These alternative markets do often provide better value and also more opportunities towards make lucrative bets when compared with standard match winner bets....", and the only contributor was "127.0.0.1" (talk))
  • 09:04, 2 October 2024 Habi talk contribs deleted page Marlin Firearms (content was: "Overall, Marlin Firearms exemplifies things it means towards aim for achievements in the firearm business. Their reputation for quality, precision, innovation, and customer service sets them apart because your leader inside field. Whether you're an experienced shooter or just beginning out, you can trust Marlin Firearms...", and the only contributor was "PhilippinesBacklinkservice" (talk))
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)