Login Register






What games mod with Java? filter_list
Author
Message
What games mod with Java? #1
As I'm learning Java, instead of making basic projects, I wanna attempt to make mods for games. Unfortunatly I only know of Minecraft that uses Java. Are there any other popularish games that use Java as their modding language? Or should Minecraft be the better choice?

Reply

RE: What games mod with Java? #2
FUCKING RUNESCAPE BRO

Reply

RE: What games mod with Java? #3
(05-08-2016, 07:41 PM)lux Wrote: FUCKING RUNESCAPE BRO

I'm shocked I forgot about Runescape and now tbh interested in looking into it lmao

Reply

RE: What games mod with Java? #4
(05-08-2016, 08:41 PM)VirtualFrost Wrote: I'm shocked I forgot about Runescape and now tbh interested in looking into it lmao

Runescape private servers are how I got started coding, and a self taught employed software engineer

Reply

RE: What games mod with Java? #5
Spigot(Minecraft server plugins) & Forge(Minecraft mods) is also a way to get into it. I am currently learning java by coding minecraft server plugins (with the benefit of getting some extra cash which is always nice Smile)

Reply

RE: What games mod with Java? #6
Not modding more game dev but you can look at RPGMaker MV, they introduced the useage of Java into it.

Example of skipmainmenu.js

Edit:
Code:
Scene_Boot.prototype.start = function() { Scene_Base.prototype.start.call(this); SoundManager.preloadImportantSounds(); if (DataManager.isBattleTest()) { DataManager.setupBattleTest(); SceneManager.goto(Scene_Battle); } else if (DataManager.isEventTest()) { DataManager.setupEventTest(); SceneManager.goto(Scene_Map); } else { this.checkPlayerLocation(); DataManager.setupNewGame(); SceneManager.goto(Scene_Map); } this.updateDocumentTitle(); }; Scene_GameEnd.prototype.commandToTitle = function() { this.fadeOutAll(); //SceneManager.goto(Scene_Title); DataManager.setupNewGame(); SceneManager.goto(Scene_Map); }

I recall CryEngine V using some Java but I have only always looked into the Cpp side of it.

Edit2: I don't know Java, I was just using above code for a game I was making till I decided RPGMaker VX Ace was better for it till MV was further developed.

Reply

RE: What games mod with Java? #7
(05-13-2016, 06:19 PM)ProfessorChill Wrote: Not modding more game dev but you can look at RPGMaker MV, they introduced the useage of Java into it.

Example of skipmainmenu.js

Edit:
Code:
Scene_Boot.prototype.start = function() { Scene_Base.prototype.start.call(this); SoundManager.preloadImportantSounds(); if (DataManager.isBattleTest()) { DataManager.setupBattleTest(); SceneManager.goto(Scene_Battle); } else if (DataManager.isEventTest()) { DataManager.setupEventTest(); SceneManager.goto(Scene_Map); } else { this.checkPlayerLocation(); DataManager.setupNewGame(); SceneManager.goto(Scene_Map); } this.updateDocumentTitle(); }; Scene_GameEnd.prototype.commandToTitle = function() { this.fadeOutAll(); //SceneManager.goto(Scene_Title); DataManager.setupNewGame(); SceneManager.goto(Scene_Map); }

I recall CryEngine V using some Java but I have only always looked into the Cpp side of it.

Edit2: I don't know Java, I was just using above code for a game I was making till I decided RPGMaker VX Ace was better for it till MV was further developed.

Just saying, but that's Javascript not Java. Javascript is quite different to Java.

Reply

RE: What games mod with Java? #8
(06-05-2016, 02:34 AM)Aoredon Wrote: Just saying, but that's Javascript not Java. Javascript is quite different to Java.

That moment when @Aoredon can't read the bottom of my post because he's too cocky and high and mighty, I'm the songs dude, not the coder.

EDIT: Stop grave digging BTW.

Reply

RE: What games mod with Java? #9
(06-05-2016, 09:06 AM)ProfessorChill Wrote: That moment when @Aoredon can't read the bottom of my post because he's too cocky and high and mighty, I'm the songs dude, not the coder.

EDIT: Stop grave digging BTW.

I don't see how I'm being "cocky" and "high and mighty".
Also the bottom of your post doesn't really say: "By the way, I know that the above code is Javascript and not Java."

As for grave digging, it was on the first page of this section in the forums and the thread isn't even that old.

Reply

RE: What games mod with Java? #10
Shhhhhh, you're giving me a tumor. You are not off to a good start in my books.

[Image: NfogItB.png]

I DON'T KNOW JAVA SO I TOTALLY KNOW THE DIFFERENCE BETWEEN JAVA AND JAVASCRIPT HUR DU DUR DUR!!!!!!!!!!!!

Reply