This file contains 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
<?php | |
/** Created By Thunder33345 **/ | |
namespace Thunder33345\CommodityMarketLite; | |
use pocketmine\event\Listener; | |
use pocketmine\plugin\PluginBase; | |
class Main extends PluginBase implements Listener | |
{ | |
private $market; |
This file contains 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
<?php | |
/* Made By Thunder33345 */ | |
// In respond to https://gist.github.com/ifvictr/3c0ca581b61cad4a4f243a09302f0137 | |
/* | |
1 N, B, D, M, J, P, R, S, T, L | |
2 O, U, Y, R, T, L, H, A, E, I | |
3 T, L, N, A, C, D, E, O, R, S | |
4 E, D, H, K, Y, R, S, T, L, N | |
*/ | |
$r1 =['N', 'B','D', 'M', 'J', 'P', 'R', 'S', 'T', 'L']; |
This file contains 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
php | |
html | |
css | |
Even more??? | |
js | |
AND MORE??? |
This file contains 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
from twisted.words.protocols import irc | |
from twisted.internet import reactor, protocol, defer | |
from twisted.python import log | |
class BetBot(irc.IRCClient): | |
nickname = "INSERT YOUR TWITCH USERNAME" | |
password = "oauth: GENERATE YOUR OAUTH TWITCH TOKEN SOMEWHERE" | |
def connectionMade(self): |