Recent posts

#61
Scripting and Server Management / Re: How to Spawn Player Fast
Last post by PLAYER - Apr 08, 2025, 03:00 PM
Thanks bro for help
#62
Community Plugins / Re: NPC/Bots implementation in...
Last post by MEGAMIND - Apr 08, 2025, 11:28 AM
Quote from: PLAYER on Apr 07, 2025, 07:51 AMHi Habi I am Having Problem With Loading These Plugins
Failed loading plugin: rpclib
Failed loading plugin: actionlib
 Loaded 0 plugins.

AN ERROR HAS OCCURRED [the index 'GetTarget' does not exist]
CALLSTACK
*FUNCTION [Check()] npcscripts/shoot.nut line [8]

ConnectNPC("bot","shoot.nut",false,"","rpclib actionlib");
Use Habi's Wiki for NPC Stuff

the correct usage of npc connection is

ConnectNPCEx("npcname", Vector(x, y, z), angle, skinid, wepid, color, "script.nut", false, "127.0.0.1", "rpclib z-finder actionlib npcmodule");
#63
Quote from: PLAYER on Apr 07, 2025, 06:20 AMHello do someone know how can i spawn player Fast ? I mean as Asian City when Player Die The Death Camera Clear Fast and Then Player Can Spawn Fast Do someone Know how to do it ?
Use wiki next time

SetWastedSettings
#64
Scripting and Server Management / Re: How to Spawn Player Fast
Last post by PLAYER - Apr 08, 2025, 09:04 AM
Do someone know ?
#65
Scripting and Server Management / Re: Bot/Npc Error or Bug
Last post by PLAYER - Apr 08, 2025, 09:04 AM
Its latest for 0.4.7.1
#66
General Discussion / Re: MEGAMIND'S VCMP BROWSER
Last post by MEGAMIND - Apr 08, 2025, 07:48 AM


Features
  • Added Selectable masterlist's.. + Default list (Browser default list Set Already)
  • Added Server announcer. Announces to default list
  • localhost is now moved under connectivity tab along with announce button and masterlist button



Note: Windows 7 users can download it from website manually

Also, The servers that were / should ment to be official will be listed official which brought new ideas to vcmp alongside with old official servers, yet the rules remain same.. the servers or owners who will spam the masterlist will be banned forever...

Pm me or msg at Discord if ur server has new features other then other servers..! if it is really unique it will be listed as official in default masterlist...

Those who have the browser already installed will get a update automatically, those who are new to this browser can download and install the latest update

#67
Scripting and Server Management / Re: Bot/Npc Error or Bug
Last post by ℛḝξ☂ - Apr 07, 2025, 04:15 PM
Are your plugins and starter in correct version?
#68
Scripting and Server Management / Re: Bot/Npc Error or Bug
Last post by PLAYER - Apr 07, 2025, 11:54 AM
Linux Server ( Not Attacking )
https://i.imgur.com/HWs2uqw.png
Blank Server ( Attacking )
https://i.imgur.com/asJh5fC.png
#69
Scripting and Server Management / Bot/Npc Error or Bug
Last post by PLAYER - Apr 07, 2025, 10:36 AM
Hello everyone Today i was trying to add bot in my server So i used Habi npc04rel64 Plugin Then I added The Bot in my server The Bot Sucessfully Joined Server But When I tried to make it Attack Players it Doesn't attacked any player I used This Script
function OnNPCScriptLoad( params )
{
SetTimerEx("Check", 200, 0);
}

function Check()
{
if(GetTarget()!=-1)
return;

for(local i=0;i<100;i++)
{
if(IsPlayerConnected(i)&&IsPlayerStreamedIn(i))
{
if(GetPlayerState(i)==PLAYER_STATE_AIM)
{
if(GetDistanceFromMeToPoint(GetPlayerPos(i))<40)
{
if( GetTarget()== -1 )
ShootPlayer(i);
}
}
}
}
}

Its Working on Blank Server Windows But when I Try to add in it my Real server Linux Its not show any error on Console Just Bot Stand at one Place and Don't shoot
In Blank Server SHooting
but in Linux Server not shooting even with same script and also there is no error on Console

#70
Community Plugins / Re: NPC/Bots implementation in...
Last post by PLAYER - Apr 07, 2025, 07:52 AM
I wanna make my Bot Shoot players but i can't because of this error