123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace XmdsBattleClientBot.Bot
- {
- partial class BotClient
- {
- public virtual void gm_add_exp(int exp)
- {
- Client.GameSocket.playerHandler.sendGMCmdRequest("@gm add exp " + exp, (e, r) =>
- {
- });
- }
- public virtual void gm_add_diamond(int exp)
- {
- Client.GameSocket.playerHandler.sendGMCmdRequest("@gm add diamond " + exp, (e, r) =>
- {
- });
- }
- public virtual void gm_add_gold(int exp)
- {
- Client.GameSocket.playerHandler.sendGMCmdRequest("@gm add gold " + exp, (e, r) =>
- {
- });
- }
- public virtual void gm_finish_task(int taskTemplateID)
- {
- Client.GameSocket.playerHandler.sendGMCmdRequest("@gm finishTask " + taskTemplateID, (e, r) =>
- {
- });
- }
- }
- }
|