Discuss Scratch
- Discussion Forums
- » Things I'm Making and Creating
- » A game enitrely about hacking
- poemon1
-
Scratcher
75 posts
A game enitrely about hacking
I'm making a game where you get to hack, like get the IP, bypass security, and stuff like that. I need help! It will be in Java. Here's what I got so far:
My questions are:
How to make a bootscreen, and how to make a level changing code?
Thanks
~poemon1
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class HackGame {
public static void main(String[] args) {
new HackGame().go();
}
public class go() {
}
}
How to make a bootscreen, and how to make a level changing code?
Thanks
~poemon1
- rogueinc01
-
New Scratcher
8 posts
A game enitrely about hacking
There is a game already like it! Three actually where you have to actually hack and it and use real procedures. Also don't use Java, it might seem easy but managing memory becomes a pain…
- poemon1
-
Scratcher
75 posts
A game enitrely about hacking
Ok, so what programming language should I use?
- rogueinc01
-
New Scratcher
8 posts
A game enitrely about hacking
oh, then use SDL, OpenGL libraries for C++, how much experience do you have?
- coolgem923
-
Scratcher
100+ posts
A game enitrely about hacking
I think Visual Basic 2010 Express would work well, even though it's not really a game making language to most people. It's easy to learn.well, is this text based?No.
- poemon1
-
Scratcher
75 posts
A game enitrely about hacking
oh, then use SDL, OpenGL libraries for C++, how much experience do you have?Well, pretty good. I can look up some tutorials, though, if I come to a problem. Thanks!
- GeonoTRON2000
-
Scratcher
100+ posts
A game enitrely about hacking
I'm making a game where you get to hack, like get the IP, bypass security, and stuff like that. I need help! It will be in Java. Here's what I got so far:(Code fixed.)My questions are:import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class HackGame {
public static void main(String[] args) {
new HackGame().go();
}
public void go() {
}
}
How to make a bootscreen, and how to make a level changing code?
Thanks
~poemon1
The main class should extend JFrame for GUI purposes. Perhaps have each level be a different class extending JPanel, and then add or remove them individually.
- 16Skittles
-
Scratcher
500+ posts
A game enitrely about hacking
Java does have the advantage of being cross-platform. Let's not all jump on the Java hate train, here. I started with Java and my AP Comp Sci course uses Java. Perhaps the most successful indie game in recent history has been written in Java. There are advantages and disadvantages but if OP is familiar with it, let him/her use it. Not trying to offend, but with this level of code it isn't too likely that you will run into the technical limitations imposed by Java anyways.
- tallontallon
-
Scratcher
100+ posts
A game enitrely about hacking
I'm making a game where you get to hack, like get the IP, bypass security, and stuff like that. I need help! It will be in Java. Here's what I got so far:Please choose scratch instead, i CANNOT help you if you use java, even if scratch and java just java is text and scratch is block based.My questions are:import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class HackGame {
public static void main(String[] args) {
new HackGame().go();
}
public class go() {
}
}
How to make a bootscreen, and how to make a level changing code?
Thanks
~poemon1
- MathlyCat
-
Scratcher
1000+ posts
A game enitrely about hacking
The problem with a non-text based engine like Scratch is you can't have object-oriented programming, or specific functions.I'm making a game where you get to hack, like get the IP, bypass security, and stuff like that. I need help! It will be in Java. Here's what I got so far:Please choose scratch instead, i CANNOT help you if you use java, even if scratch and java just java is text and scratch is block based.My questions are:import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class HackGame {
public static void main(String[] args) {
new HackGame().go();
}
public class go() {
}
}
How to make a bootscreen, and how to make a level changing code?
Thanks
~poemon1
- Paddle2See
-
Scratch Team
1000+ posts
A game enitrely about hacking
Since this topic hasn't seen a new post from the topic owner in a long time, I'm going to assume that it is dead and close the topic. If it still is alive, the topic owner just needs to use the Report button to ask a mod to reopen it 

- Discussion Forums
- » Things I'm Making and Creating
-
» A game enitrely about hacking
