关灯
开启左侧

一个GM工具代码的函数参考

  [复制链接]
admin实名认证 发表于 2016-4-24 18:04:51 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题
 
这个是一个脚本的代码。主要是给大家一个函数参考。和脚本的制作模版

功能:给GM玩家获得一些物品

脚本的类型是NPC的脚本,适用于Trinity端的脚本

#include "ScriptPCH.h"

//Enums here you can define certain numercial numbers as well as other things that you plan to use alot in your script or just for quicker acess.
enum items {
GM_HOOD = 12064,
GM_ROBE = 2586,
GM_SLIPPERS = 11508
};

/* Enums can also be achieved by typing it this way.
#define GM_HOOD 12064
#define GM_ROBE 2586
#define GM_SLIPPERS 11508
But i personally prefer enums.*/

class TestGmGear : public CreatureScript
{
public:
    TestGmGear() : CreatureScript(/*TheScriptNameWhichYouWillAddToYourNpc*/"TestGmGear") { }

    bool OnGossipHello(Player* player, Creature* creature)
    {
        player->ADD_GOSSIP_ITEM(/*IconId*/0, /*NameOfTheGossipMenu*/"I want gamemaster gear!", GOSSIP_SENDER_MAIN, /*NameOfTheCase*/1);
        player->SEND_GOSSIP_MENU(1, creature->GetGUID());
        return true;
    }

    bool OnGossipSelect(Player* player, Creature* creature, uint32 sender, uint32 action)
    {
        if (sender == GOSSIP_SENDER_MAIN)
        {
            player->PlayerTalkClass->ClearMenus();
            switch(action)
            {
            case 1:
                player->/*ThisFunctionWillAddTheDefinedItemToThePlayer*/AddItem(/*TheItemYouWantGiven*/GM_HOOD, /*TheAmmountYouWantGiven*/1);
                player->AddItem(GM_ROBE, 1);
                player->AddItem(GM_SLIPPERS, 1);
                player->/*ThisWillCloseTheGossipMenu*/PlayerTalkClass->SendCloseGossip();
                break;
            }
        }
        return true;
    }
};

void AddSC_TestGmGear()
{
    new TestGmGear();
}


 
VIP介绍
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

  • 最佳新人

    注册账号后积极发帖的会员
  • 活跃会员

    经常参与各类话题的讨论,发帖内容较有主见
  • 热心会员

    经常帮助其他会员答疑
  • 推广达人

    积极宣传本站,为本站带来更多注册会员
  • 宣传达人

    积极宣传本站,为本站带来更多的用户访问量
  • 灌水之王

    经常在论坛发帖,且发帖量较大
  • 突出贡献

    长期对论坛的繁荣而不断努力,或多次提出建设性意见
  • 优秀版主

    活跃且尽责职守的版主
  • 荣誉管理

    曾经为论坛做出突出贡献目前已离职的版主
  • 论坛元老

    为论坛做出突出贡献的会员

0关注

5粉丝

3421帖子

排行榜
作者专栏

QQ交流群&&微信订阅号

QQ交流群

微信订阅号

吾爱尚玩资源基地永久域名:

Www.523Play.Com

在线管理员QQ:1589479632

邮箱:Email@523play.com

QQ交流群:558936238

Copyright   ©2015-2116  吾爱尚玩资源基地|523play.comPowered by©523Pplay.Com技术支持:吾爱尚玩资源基地