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))
  • 09:04, 2 October 2024 Habi talk contribs deleted page Threesomes málaga (content was: "If you and your partner are searching for a more sensual experience, why don't you indulge in a couples massage at one of Málaga's luxury spas? Let skilled therapists pamper you with relaxing massages and aromatherapy procedures, allowing you both to relax and de-stress together. After your massage, you can continue the...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:04, 2 October 2024 Habi talk contribs deleted page Colt Firearms734 (content was: "One of the key features that sets Colt firearms apart from another brands is their patented locking procedure, which supplies added strength and stability during firing. This design element helps to minimize recoil and improve accuracy, making Colt firearms well suited for precision shooting and also marksmanship competi...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:04, 2 October 2024 Habi talk contribs deleted page Buy gas gang975 (content was: "Inside today's fast-paced world, many folks are searching for ways to escape the daily grind and find moments of joy and tranquility. Buying weed can provide a much-needed rest from the chaos of everyday life, allowing you to unwind and also unwind in your natural way. Whether you prefer smoking a joint or indulging insi...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:04, 2 October 2024 Habi talk contribs deleted page Houston real estate investors (content was: "One of one of the keys features of multifamily real estate investments could be the ability inside scale your portfolio fast. And multiple models under 1 roof, you are able to boost your leasing income and also in general cash flow much faster than with single-family properties. Additionally, multifamily properties are m...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:04, 2 October 2024 Habi talk contribs deleted page Webb Schools Palestinian Resistance (content was: "Embracing your diversity of Palestinian culture means recognizing as well as celebrating the contributions of different communities inside the region, whether that they be Muslim, Christian, or perhaps Druze. This inclusivity is why is Palestinian culture so powerful and also unique, the melting pot of traditions that ha...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:04, 2 October 2024 Habi talk contribs deleted page บับเบิ้ล กันกระแทก800 (content was: "Furthermore, bubble bags can be custom made to suit specified business requirements, whether it's branding with a logo or adding personalized messaging. [https://www.packbrospackaging.com บับเบิ้ล กันกระแทก] It will help create a memorable unboxing experience to customer base, improving...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:04, 2 October 2024 Habi talk contribs deleted page Mollars crypto (content was: "To get started with Mollars Token, you will need to create a digital wallet to shop your tokens. There are lots of different types of wallets available, so that it's essential to select one that meets your preferences and provides adequate security. Once you get wallet set up, you are able to buy Mollars Token in various...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:04, 2 October 2024 Habi talk contribs deleted page Seo services pricing (content was: "Backlinks are an important part of any prospering SEO strategy, and Blackhatlinks.com offers a convenient way to get high-quality backlinks directly. By purchasing backlinks using this reputable source, you'll improve your website's search engine rankings and increase organic traffic.%0D%0ALooking to boost your website's...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Spanking málaga (content was: "For art lovers, Málaga looks a treasure trove out of masterpieces waiting to be found. The birthplace to legendary musician Pablo Picasso, their city boasts a wealth of museums and galleries focused on showcasing his work. Through the Museo Picasso Málaga to your Centro de Arte Contemporáneo, thereisn' shortage to opp...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page The Corner House, Riga (content was: "Whether you are looking of a historic manor home, a boutique hotel in the countryside, a modern create hotel in city, or a luxurious beachfront resort, Latvia has things to offer every tourist searching your luxurious escape. Book now to have the best of Latvian hospitality and create memories which will last a very long...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Teen patti (content was: "As you play additional video games and gain enjoy, you'll start to pick up upon the simple strategies and nuances that can help you improve their gameplay. Whether Or Not you prefer playing conservatively plus waiting for the perfect hand, or taking risks and also bluffing your method to victory, there's your strategy fo...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Matthew Walker493 (content was: "Beauty sleep is certainly not just a myth – it’s essential for your overall well-being. During deep sleep, the bodies repair and regenerate, ultimately causing much healthier skin, locks, and nails. It’s important towards prioritize excellent sleep by establishing a consistent bedtime routine and creating a peacefu...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Relocating to SoCal Guide (content was: "In conclusion, making your most of your move to Southern California is actually about embracing that the vibrant culture, beautiful surroundings, and friendly community that make this region so specialized. By exploring their new surroundings, enjoying the exterior activities, immersing yourself within the arts and socie...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page รับทำ SEO698 (content was: "In choice to keywords, backlinks are an essential component of SEO success. Backlinks are links from other websites that point back to your internet site, signaling to research engines which your content is valuable and worth ranking higher. Building a powerful backlink profile through guest posting, collaborations, and...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Buy gas gang480 (content was: "Overall, going green when buying weed is about making mindful choices that support sustainability and reduce environmental harm. With deciding on items that are grown up utilizing sustainable practices, supporting local businesses, reducing packaging waste, and choosing eco-friendly intake methods, a person can enjoy can...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page บับเบิ้ล กันกระแทก (content was: "Bubble bags are a game-changer for travelers who wish to pack efficiently plus securely. These bags is made and durable materials it assist protect fragile items from buying damaged through transit. The thick layer of bubbles inside the bag acts as a cushion, preventing delicate items like electronics or glassware from b...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page You can look here (content was: "In addition to their impressive lineup of firearms, Springfield Armory also comes with a variety of accessories as well as gear towards boost your shooting encounter. Off holsters and also magazines to optics and cleaning kits, Springfield Armory has recently whatever you need to customize and maintain your firearm. Plus...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Matthew Walker (content was: "To beyond enhance your morning routine, consider incorporating some motion into your itinerary. Whether it's a brisk walk around the area, a yoga session, or a quick workout at home, having your body going at the beginning of the day do boost your mood while increasing productivity. Bodily activity releases endorphins, w...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Weather in Latvia (content was: "Latvia may not function as first location that comes towards mind when thinking of plush accommodations, but here are certainly some hidden gems prepared to be discovered. From elegant historic estates to modern five-star hotels, you'll live such as royalty in Latvia. Most of the many luxurious resort hotels in the unite...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Josephine AL Insights (content was: "Situated on the beautiful Gulf shore, Josephine boasts stunning views of this water and also abundant wildlife. [https://localpropertyinc.com/south-baldwin/josephine-properties-for-sale/ Josephine AL Insights] It's the perfect place for outdoor enthusiasts who enjoy fishing, birdwatching, or simply taking in the peacefu...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Reserve Properties Available (content was: "Imagine waking upward to the sound of waves crashing, enjoying breakfast on a private balcony with ocean views, and spending the day lounging by a sparkling children's pool. At The book San Clemente, this can be your reality. This luxurious resort-style community offers residents a peaceful retreat in the heart of Orange...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Wwwlloydbakerinjuryattorneyscom (content was: "Being involved in a major accident can be the best traumatic enjoy, both physically as well as emotionally. This is why having an accident lawyer by your side can be extremely useful. They are experts in navigating the legal system and also can help you understand your rights and options. They Could additionally negotiat...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Learn More Here (content was: "In addition to their commitment to tradition as well as quality, CZ also embraces innovation and technology at their firearms. By leveraging the latest advancements in materials, manufacturing processes, as well as artwork techniques, CZ is able to produce firearms which are not only dependable and accurate and convenien...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Baldwin County Living Highlights (content was: "Overall, Baldwin County offers many different upscale communities it cater to different lifestyles and preferences. Whether you want to to waterfront living, golf course panorama, or the family-friendly neighborhood, here is something for all in this beautiful area concerning Alabama. Think About such coveted communities...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page รับทำ SEO (content was: "Consider hiring an SEO expert or agency to deliver professional guidance plus assistance navigate the complexities concerning search engine optimization. Stay current with algorithm updates and guidelines in order to ensure continued success at your SEO efforts.Create compelling, click-worthy games and descriptions that...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Webb Schools (content was: "Palestine is a land rich in culture, history, and resilient folks who are breaking stereotypes everyday. Despite the negative images usually portrayed in the media, Palestinians tend to be a vibrant community concerning artists, entrepreneurs, and also activists that are passionate about their heritage.The bustling marke...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page รับทำเว็บ WordPress (content was: "From a branding perspective, simplistic web design can easily help the best company establish the strong visual identification and build credibility with their audience. A clean and modern website conveys professionalism and understanding in order to detail, leaving a positive impression on visitors. Consistent use of co...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Paket Tour Bali 3 Hari 2 Malam (content was: "Begin your Bali adventure using a luxurious stay at among the island's top beachfront resorts. Indulge at world-class amenities, breathtaking ocean views, and impeccable service as you unwind in paradise. Whether you like a secluded villa or a vibrant hotel in the heart for the action, generally there try your Bali holid...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Tourism in Singapore (content was: "Singapore looks an exciting city with numerous accommodation options to accommodate every traveler's preferences. Off plush five-star hotels to budget-friendly hostels, Singapore offers all of it. One recommended hotel may be the Marina Bay Sands, popular for the iconic infinity pool and stunning city skyline vista. Anot...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Webb Schools654 (content was: "For nature fans, the picturesque village out of Battir try a must-visit destination. It UNESCO worldwide Heritage Site is home to terraced gardens, ancient olive trees, and breathtaking vista of the encompassing hills. Traffic do hike along the historic Roman aqueducts or enjoy a leisurely picnic by the natural springs t...", and the only contributor was "PhilippinesBacklinkservice" (talk))
  • 09:03, 2 October 2024 Habi talk contribs deleted page Flaccid (content was: "One popular choice may be the realistic silicone dildo with suction cup base, perfect for hands-free fun in shower or at any smooth surface. For those seeking the best more adventurous suffer from, you will find much silicone strap-on harnesses you can use for pegging or role reversal enjoy. That The versatility of the m...", and the only contributor was "PhilippinesBacklinkservice" (talk))
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)