Vice City Multiplayer

General Discussion => General Discussion => Topic started by: [Saint] on April 07, 2013, 01:54:52 pm

Title: [Split] Someone is crashing my server
Post by: [Saint] on April 07, 2013, 01:54:52 pm
today on my beta test server join Vrocker and suggested I buy it for my hosting server, as well as threatened shutdown my server if I refuse to buy hosting

(http://cs421620.vk.me/v421620244/4f4e/h9dVlT06eUQ.jpg)

(http://cs421620.vk.me/v421620244/4f57/EUWOgX686-I.jpg)

(http://cs421620.vk.me/v421620244/4f60/PeRosUmdabc.jpg)

WTF ?????

Vrocker fuck you man! and you can kiss me ass, i not never pay you for hosting!
Title: Re: [Split] Someone is crashing my server
Post by: heekz.shadow on April 07, 2013, 02:02:17 pm
Just to clear things out, The one you seen there isn't VRocker. VRocker always wears the [Ka] tag and the first R is uppercase. Also, he would never talk like that, and he's also away in the weekends. Also, he has a job during weekdays so it's pretty impossible to see him on your server, or any other server aside from Littlewhiteys or Miami Dade Racing/Destruction Derby.
Title: Re: [Split] Someone is crashing my server
Post by: [Saint] on April 07, 2013, 02:09:23 pm
Just to clear things out, The one you seen there isn't VRocker. VRocker always wears the [Ka] tag and the first R is uppercase. Also, he would never talk like that, and he's also away in the weekends. Also, he has a job during weekdays so it's pretty impossible to see him on your server, or any other server aside from Littlewhiteys or Miami Dade Racing/Destruction Derby.

I do not want your excuses.  >:(
Title: Re: [Split] Someone is crashing my server
Post by: heekz.shadow on April 07, 2013, 02:11:15 pm
VRocker would probably just cut down the server, the one you seen isn't VRocker. He's away in the weekends. Also, do you think a british guy over 18 years would talk like that ? lol...
Title: Re: [Split] Someone is crashing my server
Post by: Fuzzy168 on April 07, 2013, 03:30:28 pm
Just to clear things out, The one you seen there isn't VRocker. VRocker always wears the [Ka] tag and the first R is uppercase. Also, he would never talk like that, and he's also away in the weekends. Also, he has a job during weekdays so it's pretty impossible to see him on your server, or any other server aside from Littlewhiteys or Miami Dade Racing/Destruction Derby.

I do not want your excuses.  >:(
VRocker is a guy with a good profile.. Judging by the language the guy you've seen used, he must be a fake. It's best if you hear an explanation by VRocker who I have no idea about his whereabouts.
Title: Re: [Split] Someone is crashing my server
Post by: [Saint] on April 07, 2013, 04:10:36 pm
Unfortunaly I do not have time to make screenshots of the ip address of the user and can not be sure at 100% but this user is strongly suggest to buy me hosting  on VRocker-Hosting.co.uk

how do you know if the server receives an attack from vc-mp crasher, a log-file not save data

so I was not able to determine its ip to know what country the user is

in any case, VC-MP developers must give owners of servers any update for fix this vulnerability in the server.

If not, many will be forced to close their servers.

if developer can not make it, they should give try do it to other people.

If the attack on my server will continue, I will have to make a few programs that will take down any vc-mp server in the first place it will be the official list of servers.  :(

I do not want to do this because I love the vc-mp and respect the work of others, but if you do not respect others, then I will do it.  :(
Title: Re: [Split] Someone is crashing my server
Post by: Doom on April 07, 2013, 04:32:13 pm
easy there, okay weather or no but i also think he is not the real VRocker cuz of shadow's and Fuzzie's point....

You shouldn't give up, try to make a cmd to get ip of a player, if a person behvaing like that comes again... bam get his ip boop F7 and then PM it to a good person to test this ip out ( I Think you should pm it to Stormeus He is a good guy ) and maybe they can know who was that guy actually... if negative you can pm a well trusted person who can do this job for you.
Title: Re: [Split] Someone is crashing my server
Post by: stormeus on April 07, 2013, 07:03:10 pm
First off, I can tell you as both a VC:MP and LU beta tester that it certainly was not VRocker. Secondly, why are you hijacking a completely unrelated thread about this? I'll split the thread when I'm back on my laptop, but in the future, DO NOT hijack threads.
Title: Re: [Split] Someone is crashing my server
Post by: [Saint] on April 07, 2013, 07:16:14 pm
easy there, okay weather or no but i also think he is not the real VRocker cuz of shadow's and Fuzzie's point....

You shouldn't give up, try to make a cmd to get ip of a player, if a person behvaing like that comes again... bam get his ip boop F7 and then PM it to a good person to test this ip out ( I Think you should pm it to Stormeus He is a good guy ) and maybe they can know who was that guy actually... if negative you can pm a well trusted person who can do this job for you.

ahahah lol, it funny you think i can not create getip cmd???

GetIP function
[pawn]
stock PlayerIP(playerid)
{//-----------------------------------------------------------------------------
   new ip[16];
   GetPlayerIp(playerid, ip, 16);
   return ip;
}//-----------------------------------------------------------------------------
[/pawn]

Show all players cmd from my GameMode (VCL)

[pawn]
   if (strcmp(cmd, "players", true) == 0)
   {//-------------------------------------------------------------------------
      new playersonline;
      for (new p = 0; p < MAX_PLAYERS; p++)
      {//---------------------------------------------------------------------
         if (IsPlayerConnected(p)) playersonline++;
      }//---------------------------------------------------------------------

      if (playersonline >= 1)
      {//---------------------------------------------------------------------
          format(str, sizeof(str), "SERVER: Players On-Line: [%d]", playersonline);
          SendClientMessage(playerid, COLOR_GREEN, str);
         for (new i = 0; i < MAX_PLAYERS; i++)
         {//-----------------------------------------------------------------
            if (IsPlayerConnected(i))
            {//-------------------------------------------------------------
                if (gPlayerLogged == 1) // åñëè àâòîðèçîâàí
                {//---------------------------------------------------------
                     if (PlayerInfo[playerid][pAdmin] != 0)
                   {//-----------------------------------------------------
                       format(str, sizeof(str), " %s[ID:%d] [IP:%s] On-line Time: [%02d:%02d]", GetName(i), i, PlayerIP(i),  PlayerInfo[pOTimeHours], PlayerInfo[pOTimeMins]);
                   }//-----------------------------------------------------
                   else
                   {//-----------------------------------------------------
                       format(str, sizeof(str), " %s[ID:%d] On-line Time: [%02d:%02d]", GetName(i), i,  PlayerInfo[pOTimeHours], PlayerInfo[pOTimeMins]);
                   }//-----------------------------------------------------
                  SendClientMessage(playerid, COLOR_GREEN, str);
               }//---------------------------------------------------------
               else
               {//---------------------------------------------------------
                   if (gPlayerAccount == 0) // åñëè íå çàðåãèñòðèðîâàí
                  {//-----------------------------------------------------
                      if (PlayerInfo[playerid][pAdmin] != 0)
                      {//-------------------------------------------------
                         format(str, sizeof(str), " %s[ID:%d] [IP:%s] (Not Register)", GetName(i), i, PlayerIP(i));
                        SendClientMessage(playerid, COLOR_GREEN, str);
                     }//-------------------------------------------------
                     else
                     {//-------------------------------------------------
                         format(str, sizeof(str), " %s[ID:%d] (Not Register)", GetName(i), i);
                        SendClientMessage(playerid, COLOR_GREEN, str);
                     }//-------------------------------------------------
                  }//-----------------------------------------------------
                  else
                  {//-----------------------------------------------------
                     if (PlayerInfo[playerid][pAdmin] != 0)
                      {//-------------------------------------------------
                         format(str, sizeof(str), " %s[ID:%d] [IP:%s] (Not Authorized)", GetName(i), i, PlayerIP(i));
                        SendClientMessage(playerid, COLOR_GREEN, str);
                      }//-------------------------------------------------
                      else
                      {//-------------------------------------------------
                        format(str, sizeof(str), " %s[ID:%d] (Not Authorized)", GetName(i), i);
                        SendClientMessage(playerid, COLOR_GREEN, str);
                     }//-------------------------------------------------
                  }//-----------------------------------------------------
               }//---------------------------------------------------------
            }//-------------------------------------------------------------
         }//-----------------------------------------------------------------
      }//---------------------------------------------------------------------
       return 1;
   }//-------------------------------------------------------------------------
[/pawn]

easy

[pawn]
public OnPlayerConnect(playerid)
{
        printf("[connect] ID:%d IP:%s", playerid, PlayerIP(playerid));
        return 1;
}
[/pawn]

simple cmd

[pawn]
    if (strcmp(cmd, "getip", true) == 0)
   {//-------------------------------------------------------------------------
      if (IsPlayerAdmin(playerid))
      {//---------------------------------------------------------------------
         tmp = strtok(cmdtext, idx);
         if (!strlen(tmp))
         {//-----------------------------------------------------------------
            SendClientMessage(playerid, COLOR_GREY, "SERVER: Use: /c getip [playerid]");
            return 1;
         }//-----------------------------------------------------------------
         gplayerid = strval(tmp);
         if (IsPlayerConnected(gplayerid) && gplayerid != INVALID_PLAYER_ID)
         {//-----------------------------------------------------------------
              format(str, sizeof(str), "SERVER: Player: %s[ID:%d], [IP: %s]", GetName(gplayerid), gplayerid, PlayerIP(gplayerid));
            SendClientMessage(playerid, COLOR_YELLOW, str);
         }//-----------------------------------------------------------------
         else
         {//-----------------------------------------------------------------
             SendClientMessage(playerid, COLOR_RED, "SERVER: Error! No player in on-line!");
         }//-----------------------------------------------------------------
      }//---------------------------------------------------------------------
      else
      {//---------------------------------------------------------------------
         SendClientMessage(playerid, COLOR_RED, "SERVER: Error! Unknow command!");
      }//---------------------------------------------------------------------
       return 1;
   }//-------------------------------------------------------------------------
[/pawn]

very simple

[pawn]
    if (strcmp(cmd, "myip", true) == 0)
   {//-------------------------------------------------------------------------
      format(str, sizeof(str), "SERVER: Your IP: [%s]", PlayerIP(playerid));
      SendClientMessage(playerid, COLOR_GREEN, str);
      return 1;
   }//-------------------------------------------------------------------------
[/pawn]


if that's not enough, we can use my Console CMD Sys from here http://forum.vicecitymultiplayer.com/index.php?topic=5287.0

and see how it work

it very easy for me, just I could not make it in time((
Title: Re: [Split] Someone is crashing my server
Post by: stormeus on April 07, 2013, 08:11:53 pm
Topics split.

And it's still not VRocker. What does he have to gain from extorting people to join his reputable hosting service, which is already doing well enough on its own?
Title: Re: [Split] Someone is crashing my server
Post by: hellboy_vkk on April 07, 2013, 11:45:15 pm
Vrocker cannot host a PAWN server ,as even on his hosting pawn server went down with 1 packet lol , so its useless that he said so anyway.
Title: Re: [Split] Someone is crashing my server
Post by: VRocker on April 08, 2013, 01:18:48 pm
Definately was not me, unless i managed to get to a computer with vc-mp installed in my sleep and started typing like a noob :P

There are so many nabs who try to impersonate me (and fail badly). It would be nice if you could get the guys IP so i could slap him into using his own nick and stop being a noob.

And yes, the exploits in the servers hould be fixed but thats hard when only one person has the source and is never here. There are too many people just being retarded and breaking servers either out of jealousy or just because they are simply retarded. One of the known 'crashers' has actually posted in this thread (Hi hellboy_vkk), he is the person i first suspected of doing this to you tbh, he likes to shut down random servers because he cant make his own.
Title: Re: [Split] Someone is crashing my server
Post by: heekz.shadow on April 08, 2013, 01:32:48 pm
Vrocker

Compare the nickname in the scoreboard & chat with what hellboy said. +1.
Title: Re: [Split] Someone is crashing my server
Post by: hellboy_vkk on April 08, 2013, 01:45:02 pm
One of the known 'crashers' has actually posted in this thread (Hi hellboy_vkk), he is the person i first suspected of doing this to you tbh, he likes to shut down random servers because he cant make his own.
Hello, Vrocker and yeah you are right one of the known 'crasher' has posted in the thread (Hi greedy Vrocker) , plus showing you your server expolit , when you were in a myth that no one can crash sq is not called as 'crashing' .But yeah saying 'our hosting provide protection against attacks' and not refunding when failed is known as GREED. Moreover my server is already there, sleepy lol.

Next time before pointing at someone correct your myths and get some proof otherwise people will get to know you are just out raging.

** Ignoring useless post by 'heekz.shadow', which was posted in an attempt to increase his no. Of posts nothing else.
Title: Re: [Split] Someone is crashing my server
Post by: [Saint] on April 08, 2013, 03:14:04 pm
Definately was not me, unless i managed to get to a computer with vc-mp installed in my sleep and started typing like a noob :P

There are so many nabs who try to impersonate me (and fail badly). It would be nice if you could get the guys IP so i could slap him into using his own nick and stop being a noob.

And yes, the exploits in the servers hould be fixed but thats hard when only one person has the source and is never here. There are too many people just being retarded and breaking servers either out of jealousy or just because they are simply retarded. One of the known 'crashers' has actually posted in this thread (Hi hellboy_vkk), he is the person i first suspected of doing this to you tbh, he likes to shut down random servers because he cant make his own.

Thanks for your reply, Please excuse me  :-[ to you if it happens again in next time, I will give you all the details of the this fake users.

you can say me, how you create your SQ server for VC-MP, if you do not have source code of 0.3z r2 ???
Title: Re: [Split] Someone is crashing my server
Post by: SugarD on April 12, 2013, 12:20:59 am
you can say me, how you create your SQ server for VC-MP, if you do not have source code of 0.3z r2 ???
VRocker and Maxorator, (as well as the LU and VC:MP teams themselves), have a trusted, cross-assistance relationship going on from which VC:MP allowed VRocker to re-release 0.3z R2 with some bug fixes and Squirrel support. It's not a new version...rather more of a support update to the same version.
Title: Re: [Split] Someone is crashing my server
Post by: VRocker on April 12, 2013, 02:00:06 am
you can say me, how you create your SQ server for VC-MP, if you do not have source code of 0.3z r2 ???
VRocker and Maxorator, (as well as the LU and VC:MP teams themselves), have a trusted, cross-assistance relationship going on from which VC:MP allowed VRocker to re-release 0.3z R2 with some bug fixes and Squirrel support. It's not a new version...rather more of a support update to the same version.

Actually...
When i first made the VC:MP Squirrel server i did it with a lot of reverse engineering and a thorough understanding of how VCMP works as well as understanding the netcode from making the mIRC dll.

I originally made it to test how viable Squirrel was as a scripting language for games while i was researching its use for LU. The idea was to test it with VCMP then release it before LU so people get used to the language. It was originally a separate executable using the rcon interface (yucky i know) but i had a crazy idea to make a new server and the Squirrel server was born!

The trusted thingy between me and max just allows us to share information and some experimental methods of hacking GTA. When we released the server i did let the VC:MP team know but i don't think they approved of it and i don't think they thought it would become as popular is it is and tbh neither did i.
Title: Re: [Split] Someone is crashing my server
Post by: SugarD on April 12, 2013, 03:22:57 am
It was originally a separate executable using the rcon interface (yucky i know) but i had a crazy idea to make a new server and the Squirrel server was born!
Believe it or not, that is how mIRC scripting in MTA 0.x was born, except through Admin+ instead of RCON, (which is a primitive form of the same thing). It's not quite as "yucky" as you may think, given the lack of public information back at that time. Very innovative move, VRocker. :)
Title: Re: [Split] Someone is crashing my server
Post by: [AoD]NC on April 12, 2013, 11:52:12 am
Yes, I remember that. The squirrel server was for learning the squirrel scripting language, before LU will be released. The idea to create a new server was seriously crazy, but it was worth. I used it since the first day it was released and was a bit shocked that we have now two different servers to choose :). I think more VCMP servers are now running the squirrel version than the official pawn one.
Title: Re: [Split] Someone is crashing my server
Post by: [Saint] on April 12, 2013, 07:35:47 pm
you can say me, how you create your SQ server for VC-MP, if you do not have source code of 0.3z r2 ???
VRocker and Maxorator, (as well as the LU and VC:MP teams themselves), have a trusted, cross-assistance relationship going on from which VC:MP allowed VRocker to re-release 0.3z R2 with some bug fixes and Squirrel support. It's not a new version...rather more of a support update to the same version.

Actually...
When i first made the VC:MP Squirrel server i did it with a lot of reverse engineering and a thorough understanding of how VCMP works as well as understanding the netcode from making the mIRC dll.

I originally made it to test how viable Squirrel was as a scripting language for games while i was researching its use for LU. The idea was to test it with VCMP then release it before LU so people get used to the language. It was originally a separate executable using the rcon interface (yucky i know) but i had a crazy idea to make a new server and the Squirrel server was born!

The trusted thingy between me and max just allows us to share information and some experimental methods of hacking GTA. When we released the server i did let the VC:MP team know but i don't think they approved of it and i don't think they thought it would become as popular is it is and tbh neither did i.

big thanks for your reply.
Title: Re: [Split] Someone is crashing my server
Post by: aledark24 on April 18, 2013, 04:43:29 pm
use getip...
and go to google and.find the.geoip i think...
not remember the name...
and see the location of.the ip
if.is the same country of vrocker
i think you.need send a misile
and blow away!!
i have the same problem whit lost.connection....
some celous players always attack.my servers... so i remove.the announxe and.open the server.in ip mode...
not show in the internet list
and give ip.in my facebook....
only work.if you open the server.whit.other port forward
if you use 5192 whit announxe and later.you remove...
appear in the internet list....
need change the port and open.whit.not announce


if you not understand my bad english
not is.my problem...
Title: Re: [Split] Someone is crashing my server
Post by: dynavolt71 on April 19, 2013, 01:18:45 am
I  dont understand what you mean
Title: Re: [Split] Someone is crashing my server
Post by: SugarD on April 19, 2013, 10:16:44 pm
I  dont understand what you mean
He's saying get the IP and take it to a website that can trace them back to a location. If it's VRocker's IP address, kick his butt. If it's not, ban the clown. :P
Title: Re: [Split] Someone is crashing my server
Post by: dynavolt71 on April 20, 2013, 02:00:33 am
Why must missile ? I dont have one. :P
Title: Re: [Split] Someone is crashing my server
Post by: SugarD on April 20, 2013, 04:38:35 am
Why must missile ? I dont have one. :P
He's just joking. :)