Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Escobabe

#1
Thanks for the feedback again, appreciated.

Well i don't know what to say, no one would want to open up a server knowing that he won't have much of a playerbase, or no playerbase at all, let alone keeping it up. My idea was to develop a gamemode similiar to a samp server i've been playing on for years, and run the server under their name. With VC-MP lacking of playerbase in general, im a bit worried on finding the perfect staff, as no one would want to start fresh nowadays on
 new servers. I will keep in mind when launching that i'll have a heart attack when i see the server playerbase on 0/50, haha.

Thanks to all who wished me luck with my project, i wish you all the same with your servers. I guess i'll just take the development easy and not invest to much time on it.
#2
Thank you all for your feedback, i really appreciate it.

Quote from: EK.IceFlake on Jan 11, 2018, 03:19 AM
Quote from: Escobabe on Jan 10, 2018, 11:33 PMlacks some features too, like dialogs etc...

You can implement your own dialog using a GUIWindow, some GUILabels and a GUIButton.

I didn't know about this, will give it a try, thanks.
#3
General Discussion / Is it worth it on 2k18?
Jan 10, 2018, 11:33 PM
Hello everyone,

I was on samp for years and just recently decides to check out vcmp. To be honest vcmp has some great features samp doesn't have and lacks some features too, like dialogs etc... But either way i started scripting a new vcmp gamemode some days ago, maybe like 10% done till now. Anyways, i want to know is it worth it continuing my gamemode or not?

Any feedback would be appreciated.
#4
I think the player.Name == "[VU]" is ok?
Look in this function for example: http://wiki.vc-mp.org/wiki/Scripting/Squirrel/Functions/KickPlayer

if ( player.Name == "Noob69" || player.Name == "Antonio_Morales" ) //This players can execute the command.
Edit: Actually im wrong, the code only check if the players name is '[VU]', not if a player has a '[VU]' tag on his name.
#5
Well this is an example of how should it look like if im not wrong, basically you need to check if the players name contains your clan tag, and check the players stats ( 0 - Not in the clan / 1 - In the clan). And you would surely need a command like '/setclan [playerid]' where you would set the players 'InClan' to 1 and 'kickclan[playerid]' to 0, and of course save the stats.

I'm not yet familiar with VC:MP documentation, so if my code is wrong in any way, feel free to edit my mistakes.
function onPlayerJoin( player )
{
if((player.Name=="[VU]") && (stats[player.ID]InClan != 1))
{
KickPlayer(player);
}
else
{
MessagePlayer("Welcome back",player);
}
return 1;
}
#7
Support / VCMP Windows Server link
Jan 03, 2018, 09:37 AM
Hello there,

I've decided to check out VC-MP after reading the documentations on wiki, but it seems that the server download links are not working? If someone has the link of Windows Server 32bit please post it here.