dev_该合并了 #8
@ -0,0 +1,34 @@
|
|||||||
|
package com.yutou.qqbot.models.Commands;
|
||||||
|
|
||||||
|
import com.yutou.qqbot.Annotations.UseModel;
|
||||||
|
import com.yutou.qqbot.QQBotManager;
|
||||||
|
import com.yutou.qqbot.models.Model;
|
||||||
|
import net.mamoe.mirai.event.events.MessageEvent;
|
||||||
|
|
||||||
|
import static com.yutou.qqbot.models.Model.QQGroupCommands.QQ_WOODEN;
|
||||||
|
|
||||||
|
@UseModel
|
||||||
|
public class WoodenFish extends Model {
|
||||||
|
@Override
|
||||||
|
public boolean isUserPublic() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String[] getUsePowers() {
|
||||||
|
return new String[]{QQ_WOODEN};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getModelName() {
|
||||||
|
return "电子木鱼";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onMessage(Long qq, MessageEvent event, boolean isGroup) {
|
||||||
|
super.onMessage(qq, event, isGroup);
|
||||||
|
if("地狱笑话".equals(msg)){
|
||||||
|
QQBotManager.getInstance().sendMessage(qq,"功德+1");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -38,9 +38,11 @@ public abstract class Model implements ModelInterface {
|
|||||||
public final static String BILI_LIVE_DANMU_SEND="!b站签到";
|
public final static String BILI_LIVE_DANMU_SEND="!b站签到";
|
||||||
public final static String BILI_LIVE_DANMU_DEL="!b站签到删除";
|
public final static String BILI_LIVE_DANMU_DEL="!b站签到删除";
|
||||||
|
|
||||||
|
public final static String QQ_WOODEN="!电子木鱼";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class QQFromCommands {
|
public static class QQFromCommands {
|
||||||
public static final String TURNIP_PROPHET = "大头菜";
|
public static final String TURNIP_PROPHET = "大头菜";
|
||||||
public static final String TSDM_PAY = "!tsdm";
|
public static final String TSDM_PAY = "!tsdm";
|
||||||
public static final String BAIDU_DOWN = "!bd";
|
public static final String BAIDU_DOWN = "!bd";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user