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 /
stride /
pengu /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
Cliff.class
566
B
-rw-r--r--
Cliff.java
608
B
-rw-r--r--
Cliff.stride
1.64
KB
-rw-r--r--
Cloud.class
867
B
-rw-r--r--
Cloud.java
937
B
-rw-r--r--
Cloud.stride
2.58
KB
-rw-r--r--
Mover.class
1.48
KB
-rw-r--r--
Mover.java
1.44
KB
-rw-r--r--
Mover.stride
4.36
KB
-rw-r--r--
Pengu.class
1.05
KB
-rw-r--r--
Pengu.java
1.2
KB
-rw-r--r--
Pengu.stride
3.97
KB
-rw-r--r--
README.TXT
345
B
-rw-r--r--
Scene.class
455
B
-rw-r--r--
Scene.java
524
B
-rw-r--r--
Scene.stride
1.31
KB
-rw-r--r--
project.greenfoot
1.59
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Pengu.stride
<?xml version="1.0" encoding="UTF-8"?> <class name="Pengu" extends="Mover" extends-java="Mover" enable="true" strideversion="1"> <javadoc xml:space="preserve">A little penguin that wants to get to the other side.</javadoc> <imports> <import target="java.util.*" enable="true"/> <import target="greenfoot.*" enable="true"/> </imports> <implements/> <fields> <variable access="private" static="true" final="true" type="int" type-java="int" name="jumpStrength" value="16" value-java="16" enable="true"/> </fields> <constructors/> <methods> <method access="public" type="void" type-java="void" name="act" enable="true"> <javadoc xml:space="preserve">Check keyboard input and react accordingly.</javadoc> <params/> <throws/> <body> <call expression="checkKeys()" expression-java="checkKeys()" enable="true"/> <call expression="checkFall()" expression-java="checkFall()" enable="true"/> </body> </method> <method access="private" type="void" type-java="void" name="checkKeys" enable="true"> <javadoc xml:space="preserve"/> <params/> <throws/> <body> <if condition="Greenfoot.isKeyDown("left")" condition-java="Greenfoot.isKeyDown("left")" enable="true"> <ifStatements> <call expression="setImage("pengu-left.png")" expression-java="setImage("pengu-left.png")" enable="true"/> <call expression="moveLeft()" expression-java="moveLeft()" enable="true"/> </ifStatements> </if> <if condition="Greenfoot.isKeyDown("right")" condition-java="Greenfoot.isKeyDown("right")" enable="true"> <ifStatements> <call expression="setImage("pengu-right.png")" expression-java="setImage("pengu-right.png")" enable="true"/> <call expression="moveRight()" expression-java="moveRight()" enable="true"/> </ifStatements> </if> <if condition="Greenfoot.isKeyDown("space")" condition-java="Greenfoot.isKeyDown("space")" enable="true"> <ifStatements> <if condition="onGround()" condition-java="onGround()" enable="true"> <ifStatements> <call expression="jump()" expression-java="jump()" enable="true"/> </ifStatements> </if> </ifStatements> </if> </body> </method> <method access="private" type="void" type-java="void" name="jump" enable="true"> <javadoc xml:space="preserve">Start a jump action.</javadoc> <params/> <throws/> <body> <call expression="setVSpeed(-jumpStrength)" expression-java="setVSpeed( - jumpStrength)" enable="true"/> <call expression="fall()" expression-java="fall()" enable="true"/> </body> </method> <method access="private" type="void" type-java="void" name="checkFall" enable="true"> <javadoc xml:space="preserve">Check whether we are falling. If so, fall. If we're on ground, stop the fall.</javadoc> <params/> <throws/> <body> <if condition="onGround()" condition-java="onGround()" enable="true"> <ifStatements> <call expression="setVSpeed(0)" expression-java="setVSpeed(0)" enable="true"/> </ifStatements> <else> <call expression="fall()" expression-java="fall()" enable="true"/> </else> </if> </body> </method> </methods> </class>
Close