Skip to content

Instantly share code, notes, and snippets.

@Nucleareal
Created October 20, 2013 08:50
Show Gist options
  • Save Nucleareal/7066674 to your computer and use it in GitHub Desktop.
Save Nucleareal/7066674 to your computer and use it in GitHub Desktop.
女装プラグインバスタープラグインの中身
@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