Created
October 20, 2013 08:50
-
-
Save Nucleareal/7066674 to your computer and use it in GitHub Desktop.
女装プラグインバスタープラグインの中身
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
@Override | |
public void onStatus(Status status) | |
{ | |
long UserID = StatusUtils.getOwner(status).getId(); | |
String UserSN = StatusUtils.getOwner(status).getScreenName(); | |
if(StatusUtils.isnRetweet(status) && StatusUtils.isFromJavatter(status)) | |
{ | |
if(JosouBusterUtil.isEnemyTweet(status)) //ワンチャンセックスハードッコイ | |
{ | |
System.out.println("Enemy Appeared."); | |
if(JosouBusterStock.IsRegistered(UserID)) //かつ登録済み | |
{ | |
JosouBusterStock.ResetBusterCounter(UserID); //次の釣りに備えるために力をリセット | |
if(isWaitingMode) | |
{ | |
Counter++; //釣り上げ中ならカウンタを回す | |
} | |
} | |
else if(JosouBusterStock.Enqueue(UserID)) //登録済みじゃなかったけどワンチャンセックスハードッコイなので | |
{ | |
JosouBusterStock.Save(); //敵とみなす | |
NotifyEnemy(UserSN); | |
} | |
} | |
//ワンチャンセックスハードッコイでない | |
else if(JosouBusterStock.IsRegistered(UserID)) //しかし登録済み | |
{ | |
JosouBusterStock.IncrimentBusterCounter(UserID); //次の釣りに備えて力を蓄える | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment