This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void openDialogue(final Player player, int dialogueId) { | |
try { | |
System.out.println("Starting: "+dialogueId); | |
if (player == null) | |
return; | |
if (dialogueId == -1) { | |
return; | |
} | |
for (int i = 0; i < 5; i++) { | |
player.getInterfaceState().setNextDialogueId(i, -1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
601 execve("/sbin/tc", ["tc", "qdisc", "show"], [/* 20 vars */]) = 0 | |
601 brk(NULL) = 0x21db000 | |
601 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
601 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
601 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 | |
601 fstat(3, {st_mode=S_IFREG|0644, st_size=34329, ...}) = 0 | |
601 mmap(NULL, 34329, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f4d9f59a000 | |
601 close(3) = 0 | |
601 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
601 open("/lib/x86_64-linux-gnu/libm.so.6", O_RDONLY|O_CLOEXEC) = 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static final int MOUSEEVENTF_ABSOLUTE = 0x8000; | |
public static final int MOUSEEVENTF_LEFTDOWN = 0x0002; | |
public static final int MOUSEEVENTF_LEFTUP = 0x0004; | |
public static final int MOUSEEVENTF_MIDDLEDOWN = 0x0020; | |
public static final int MOUSEEVENTF_MIDDLEUP = 0x0040; |
NewerOlder