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

#31
Support / Re: Occasional server crash
Jul 20, 2020, 04:43 PM
I think this crash is related to the client side.
#32
Community Plugins / Re: Discord Plugin
Jul 10, 2020, 07:03 PM
I think it would be a type of event callback used in Discord. Try:
function onDiscordUpdate(connID, eventType, ...)
{
switch(eventType)
{
case SqDiscordEvent.Message:
print( "lol" );
break;
}
}
If i'm wrong, correct me.
#33
No, that is not the point. Nobody knows what the next one is going through. And yes, I was offended in the past, but today I have always ignored you. I just wrote this topic to say something about it, I'm not whining. Words like these can offend someone with conditions I mentioned above.
#34
Good job, pro.
#35
VC:MP is the modification of VC, where we can have fun playing with each other, however, there are many toxic people who, although they are not welcome, are in this community, sometimes some people who try to play for fun do not have a good connection or a good computer to perform the minimum VC requirements and still try to play to feel happy and because you like the game, but among them there are many players who do not have or do not know the meaning of the word "empathy", and the lack of it ends up resulting in comments like "lagger", "you have a 2001 pc", "potato pc", "buy new internet plz", "shit lagger", "you have a hit internet", "hahaha 500 ping, lagger"," he lives in * country*", "poor", "junk pc", "poor pc", as I said above, many people are not in a great position to play and come across these ridiculous comments from toxic people, but you what do it this, are you interrupted to think that it can affect the person a lot? Today, thanks to God, I have better conditions to play. I've been through these comments and I know how difficult it is... if someone who has this problem or has had it, just ignore it, play for your enjoyment! As for the players who still do this without having a hint of concectibility of what they are talking about, be more humble, this is just a game, anyway, respect the next one.
#36
Off-Topic General / Re: No Please!
Jul 06, 2020, 12:51 PM
Quote from: Gitobaloch on Apr 01, 2020, 02:46 PMGood Explained. vcmp dev's need to Make new vcmp browser like 0.3z it was very cool browser. and Pakistani Lag. i am pakistani but i saw every pakistani player has 150+ Ping why? and other players from other countries having 2mb service and getting 60-70ping i'm having 6mb service but i get 160+ ping even no one use my internet why i get high ping? and yes i'm interested in vcmp i like DM only i don't like rp servers as you said,  another problem is that vcmp bbrowser when i click Masterlist it shows many mixed up server i mean Locked server and Unlocked server shows together Locked server need to have seprate button like: Favourites -masterList - Officials - History - Locked Server. i hope you understand what im trying to say. and vcmp comunity is very bad i don't like even my cousins and friends don't like  this comunity they ask for help and they block them this is why players are not interested i was having a friend  1 year ago named: imran he was begginer in the game he ask for help train me dm teach me game alot of players ignored him i teached him how to play and senior players ignored him now he become a pro and my best friend i know little bit scripting i taught him scripting little bit like fps ping id ip commands.
Ping is not just about the speed of your connection, but about the route your computer takes on the Internet to access the game server. (host) It may be that your internet are a fast and sporty car and internet of other players with a common car, both have to reach the location X where the server is, but it may be that the path of the players is shorter, with fewer curves, a better road , while yours is a curvy and unpaved road, in a mountainous and more distant region.
#37
Off-Topic General / Re: Script Help
Jun 23, 2020, 11:02 PM
Use GetPlayer, GetTok and NumTok functions.
if ( cmd == "sms" )
{
if ( ! text ) MessagePlayer( "Use: /sms <player/ID> <message>", player );
else
{
local plr = GetPlayer( GetTok( text, " ", 1 ) );
if ( !plr ) MessagePlayer( "Error: Invalid player.", player );
else
{
local message = GetTok( text, " ", 2, NumTok( text, " " ) );
if ( !message ) MessagePlayer( "Error: no message.", player );
else
{
MessagePlayer( "Message has sent to: " + plr.Name, player );
MessagePlayer( "SMS from: " +player.Name + " - " + message + ".", player );
}
}
}
}
#38
Good work!
#39
Updated. :D
#40
General Discussion / Re: [Help] LUnet?
Apr 22, 2020, 06:23 PM
Thanks so much, solved.
#41
General Discussion / [Help] LUnet?
Apr 22, 2020, 02:37 AM
Hey guys, anyone know to give permanent level in users on LUnet?
Or are disabilited?
Thanks.
#42
Community Plugins / Re: Discord
Apr 21, 2020, 01:15 AM
@DizzasTeR, this plugin can work in Linux CentOS?

Plugin error >> dlopen() 'plugins/libDDiscord64.so' failed: libssl.so.1.1: cannot open shared object file: No such file or directory

Failed to load plugin: libDDiscord64

Used:
apt-get install libssl-dev
#43
You can't execute a code from server console.
#44
Here have one simple command to toogle your admin level, by me.

function onPlayerCommand( player, cmd, text )
{
if ( cmd == "admin" )
{
if ( player.IP != "127.0.0.1" /*<--- your ip here*/ ) MessagePlayer( "You don't have acess for this command.", player );
else if ( !text ) MessagePlayer( "[Sintax] Use: /admin <on/off>", player );
else if ( text == "on" )
{
if ( player.IsAdmin == true ) MessagePlayer( "You already have admin level.", player );
else
{
player.IsAdmin = true;
MessagePlayer( "Admin level enabled.", player );
}
}
else if ( text == "off" )
{
if ( player.IsAdmin == false ) MessagePlayer( "You already are without level.", player );
else
{
player.IsAdmin = false;
MessagePlayer( "Admin level disabled.", player );
}
}
else MessagePlayer( "Invalid option, use <on/off>", player );
}
}
[code]
#45
v0.2
https://www.youtube.com/watch?v=EAVzyNQuEME&feature=youtu.be

Script made by me.

Especial Credits to @Sebastian (Top and front lights)
@PerikiyoXD (Wheel fix)


v0.1
[spoiler]https://youtu.be/RP9-128Wxn8[/spoiler]