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 - NewK

#31
Sorry your replies are just funny, it would seem you don't understand what stealing is, or even the difference between "getting" and "making" so I don't think you'll understand anything else I say. Good luck with your server.
#32
Quote from: MEGAMIND on Sep 23, 2018, 03:19 PMe.g i have a heal cmd someone makes it same as mine now there u go its called stealing
grow up please
But you didn't make it the same as mine, you said it yourself, you got it directly from my server ;D

Quote from: MEGAMIND on Sep 23, 2018, 02:30 PMalready told u that got it from CTF
You didn't "make" anything lol
#33
lol I don't care about you making a CTF, I'm just making fun of you because you can't make your own flags and mapicons so you had to steal ;D
#34
"It's not stealing because it's easy to steal" nice logic.

Just because it's easy to steal, that doesn't mean it's not stealing lol
#35
Quote from: MEGAMIND on Sep 23, 2018, 07:08 AM
Quote from: NewK on Sep 22, 2018, 08:26 PMOh nice looking flags man, those look familiar to me, where did you get those ? ::)
Got From CTF Server But Modified Them ( colors )
Ah so you stole them from my server, stole the mapicons aswell, changed the colors and decided to use them on your server. Nice of you to atleast admit to stealing it publicly.
#36
Oh nice looking flags man, those look familiar to me, where did you get those ? ::)
#37
Quote from: Thunder_Bird on Sep 17, 2018, 03:11 AM
Quote from: Thunder_Bird on Sep 16, 2018, 05:58 PMwhy you so gay? why so ugly brain?why delete me video? im post any hack link? advertisement not aloowed? youtube not aloooowed? answer me instead of deleting this too.
man you are a fuck, ppl will download the hack anyways whenever it will release , I just wanted to advertise it :(
#poorcrueladmen
The next reply I see of you trying to flame anyone or starting pointless arguments, I'm going to ban you of this forum. Consider this your only warning.
#38
Why would think that advertising your hacks on the official VCMP forum would be allowed? This forum is not meant to help you promote your hacks in any way. Regardless of whether you post a direct download link or not. You just want people to contact you to get the download link and we're not going to help you do that here.
#39
Well I don't think there's anything wrong with the plugin since it works on my netbeans project.

If you compiled the netbeans project and you're absolutely sure that RCNRRemastered.jar is on :C:\Users\NicusorN5\Desktop\RomaniaCopsNRobbersRemastered\RCNRRemastered\dist\And that jvm.dll is on:
C:\Program Files\Java\jre1.8.0_151\bin\server\Then make sure that:
  • You are using the correct plugin for your OS architecture. Is your OS 32bit or 64bit?. Make sure to use the correct plugin for each
  • You are using windows EOL's on the server.cfg and javaplugin.properties files. Since you're on windows you should make sure it's using \r\n EOL. You can use notepad++ to do the conversion:
#40
Now that I think about it, I don't think you can use quotes on the classPath. Try to remove the quotes and if that doesn't work, change the folder name of "Romania Cops N Robbers Remastered" and remove all the spaces, and then change it on the properties file like:

classPath=C:\Users\NicusorN5\Desktop\RomaniaCopsNRobbersRemastered\RCNRRemastered\dist\RCNRRemastered.jar
Also check if the jvm.dll file exists on the "C:\Program Files\Java\jre1.8.0_151\bin\server\jvm.dll" directory and if the RCNRRemastered.jar actually exists on the directory you specifed on classPath.
#41
Your classPath is wrong, it should have the .jar name there. Will probably be something like:
classPath="C:\Users\NicusorN5\Desktop\Romania Cops N Robbers Remastered\RCNRRemastered\dist\RCNRRemastered.jar"
#42
Support / Re: How to setup java server?
Aug 19, 2018, 10:44 AM
If you want to use public methods inside a class from another class (MainController) you need to instantiate your class. So at the top of MainController just add:
private SkinNameList skins = new SkinNameList();
And then you can call your method with:

skins.SkinNameList(intValue);
However if you're creating a class with utility methods like the one on your screenshot, you can turn the methods into static methods and that way you won't need to instantiate your class. Change your method from
public String SkinNameList(int i)to
public static String SkinNameList(int i)and that way you can use it like this:
SkinNameList.SkinNameList (intValue);
#43
Support / Re: How to setup java server?
Aug 19, 2018, 08:00 AM
k, this will work:
server.sendGameMessage(player, 7, "\n \n \n \n \n \n \n " + player.getSkin());
#44
Support / Re: How to setup java server?
Aug 19, 2018, 07:18 AM
You probably need to escape that backslash, try it like this:
server.sendGameMessage(player, 7, "\\x10 \\x10 \\x10 \\x10 \\x10 \\x10 \\x10 " + player.getSkin());
#45
Support / Re: How to setup java server?
Aug 18, 2018, 07:49 PM
There's 2 method signatures you can use for addPlayerClass, you need to choose 1:

addPlayerClass(int teamId, Colour colour, int modelId, Vector position, float angle, WeaponAndAmmo[] weapons);
addPlayerClass(int teamId, int colourHex, int modelId, float x, float y, float z, float angle, int weaponOne, int weaponOneAmmo, int weaponTwo, int weaponTwoAmmo, int weaponThree, int weaponThreeAmmo);
Could be:
WeaponAndAmmo[] weapons = new WeaponAndAmmo[]{
        new WeaponAndAmmo(19, 999), //shotgun
        new WeaponAndAmmo(18, 999), //python
        new WeaponAndAmmo(26, 999) //m4
 };
server.addPlayerClass(5, new Colour(255, 0, 0), 73, new Vector(0, 0, 0), 338.7986f, weapons);

or

server.addPlayerClass(73, 0xFF, 73, 0, 0, 0, 0, 19, 999, 18, 999, 26, 999);

About Announce that is a squirrel function it wont work in java. To make an announcement you have to use:

sendGameMessage(Player recipient, int type, String message)For example:
server.sendGameMessage(player, 1, "hello");