搜索
查看: 7626|回复: 14

[AMXX 带源码] 僵尸服用的弹药包银行插件,已汉化

[复制链接]
发表于 2009-7-7 12:34:42 | 显示全部楼层 |阅读模式 来自 中国–广西–南宁
本帖最后由 啊俊771 于 2009-7-8 00:06 编辑

发一个专用于玩家存放弹药包的银行插件,给僵尸服增点乐趣,银行支持MYSQL数据库,已汉化好了。经测试可正常使用!可用玩家名字保存弹药包。
大家也可去测试  124.227.190.252:27003
插件附有源码,银行名字自己更改。
使用中有问题的大家可以共同讨论.
本人对编码其实不在行,插件是翻译了点国外的源码。现在银行插件是游戏里任何人都可以使用银行,如果有高手能帮加上个只有会员等才能使用的权限就比较完美。
也可到这里下载:http://bbs.cgea.cn/viewthread.php?tid=38804

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注个册吧

×
 楼主| 发表于 2009-7-7 23:03:15 | 显示全部楼层 来自 中国–广西–南宁
下载的怎么都不顶一下 :funk:
回复

使用道具 举报

发表于 2009-7-7 23:48:49 | 显示全部楼层 来自 中国–湖北–武汉
这是个很好的插件
回复

使用道具 举报

发表于 2009-7-8 12:33:07 | 显示全部楼层 来自 中国–广东–中山
这个插件是已名字保存玩家信息还是IP或者ID?
回复

使用道具 举报

 楼主| 发表于 2009-7-8 15:45:18 | 显示全部楼层 来自 中国–广西–南宁
是名字保存
回复

使用道具 举报

发表于 2009-7-13 01:57:06 | 显示全部楼层 来自 中国–山东
我还是建议不要使用这玩意,这样刷弹药袋的人比比皆是,使游戏公平性大大降低!
回复

使用道具 举报

发表于 2009-10-18 00:13:20 | 显示全部楼层 来自 中国–广东–东莞
怎样帮定按键,,?我试过好象打不开菜单能教一下吗
回复

使用道具 举报

发表于 2009-10-18 00:13:45 | 显示全部楼层 来自 中国–广东–东莞
#include <amxmodx>
#include <amxmisc>
#include <zombieplague>

#define USING_SQL
#if defined USING_SQL
        #include <sqlx>
#else
        #include <nvault>
#endif

stock const ZP_BANK_FMT[] = "^x04[CGEA僵尸银行]^x01 %L"

new g_iAmmoPacks[33]
new g_iSessionMovement[33]
new g_szAuth[33][36]
new cvAnnounceTime
new cvBankMax

#if defined USING_SQL
new g_szSQLTable[64], Handle:g_hSQLTuple, g_szQuery[128]

LoadClient(id, szAuth[])
{
        formatex(g_szQuery, charsmax(g_szQuery),
                "SELECT amount FROM `%s` WHERE auth='%s'",
                g_szSQLTable, szAuth)

        new cData[37]
        cData[0] = id
        copy(cData[1], charsmax(cData)-1, szAuth)
       
        SQL_ThreadQuery(g_hSQLTuple, "LoadClient_QueryHandler", g_szQuery, cData, strlen(cData[1]))
}

public LoadClient_QueryHandler(iFailState, Handle:hQuery, szError[], iErrnum, cData[], iSize, Float:fQueueTime)
{
        if(iFailState != TQUERY_SUCCESS)
        {
                log_amx("LoadClient(): SQL Error #%d - %s", iErrnum, szError)
                return
        }
       
        new id = cData[0]
        static szAuth[36]
        copy(szAuth, charsmax(szAuth), cData[1])
       
        new iAmmoPacks = 0
        if(SQL_NumResults(hQuery))
                iAmmoPacks = SQL_ReadResult(hQuery, 0)
                //SQL_QueryAndIgnore("INSERT INTO `%s` SET auth='%s'", g_szSQLTable, szAuth)
       
        g_iAmmoPacks[id] = iAmmoPacks
               
        SayText(id, id, ZP_BANK_FMT, id, "ZP_BANK_LOAD", iAmmoPacks, szAuth)
}

SaveClient(id, szAuth[])
{
        new iDifference = g_iSessionMovement[id]
       
        formatex(g_szQuery, charsmax(g_szQuery),
                "INSERT INTO `%s` SET auth='%s', amount=%d ON DUPLICATE KEY UPDATE amount=amount+(%d)",
                g_szSQLTable, szAuth, iDifference, iDifference)
       
        SQL_ThreadQuery(g_hSQLTuple, "SaveClient_QueryHandler", g_szQuery)
}

public SaveClient_QueryHandler(iFailState, Handle:hQuery, szError[], iErrnum, iData[], iSize, Float:fQueueTime)
{
        if(iFailState != TQUERY_SUCCESS)
                log_amx("SaveClient(): SQL Error #%d - %s", iErrnum, szError)
}

#else
new g_hVault

LoadClient(id, szAuth[])
{
        static szValue[32], iTimestamp
        new iValue = 0
        if(nvault_lookup(g_hVault, szAuth, szValue, charsmax(szValue), iTimestamp) && is_str_num(szValue))
                iValue = (g_iAmmoPacks[id] = str_to_num(szValue))
               
        SayText(id, id, ZP_BANK_FMT, id, "ZP_BANK_LOAD", iValue, szAuth)
}

SaveClient(id, szAuth[])
{
        static szValue[32]
        num_to_str(g_iAmmoPacks[id] + g_iSessionMovement[id], szValue, charsmax(szValue))
       
        nvault_set(g_hVault, szAuth, szValue)
}
#endif

public plugin_init()
{
        register_plugin("[ZP] Ammo Bank", "1.0", "danielkza")
       
        register_clcmd("say", "Command_Say")
        register_dictionary("zp_bank.txt")
       
        cvAnnounceTime        = register_cvar("zp_bank_announce_time", "60")
        cvBankMax                = register_cvar("zp_bank_max", "2000")
       
        Task_Announce()
       
#if defined USING_SQL
        new configsDir[64]
        get_configsdir(configsDir, 63)
       
        // Declare standard SQL cvars so we don't depend on admin.amxx
        register_cvar("amx_sql_host", "127.0.0.1")
        register_cvar("amx_sql_user", "root")
        register_cvar("amx_sql_pass", "")
        register_cvar("amx_sql_db", "amx")
        register_cvar("amx_sql_type", "mysql")
       
        new cvTable = register_cvar("zp_bank_table", "zp_bank")
        // Execute SQL configs. You must put zp_bank_table in there
        server_cmd("exec %s/sql.cfg", configsDir)
        server_exec()
       
        get_pcvar_string(cvTable, g_szSQLTable, charsmax(g_szSQLTable))
        g_hSQLTuple = SQL_MakeStdTuple()
       
        new iError, szError[256]
        new Handle:hSQLConnection = SQL_Connect(g_hSQLTuple, iError, szError, charsmax(szError))
        if(hSQLConnection != Empty_Handle)
        {
                SQL_QueryAndIgnore(hSQLConnection,
                        "CREATE TABLE IF NOT EXISTS `%s` (\
                                auth VARCHAR(36) NOT NULL PRIMARY KEY, \
                                amount INT(10) UNSIGNED NOT NULL DEFAULT 0 \
                        ) ENGINE=MyISAM DEFAULT CHARSET=utf8;",
                        g_szSQLTable )
               
                SQL_FreeHandle(hSQLConnection)
        }
        else
                log_amx("plugin_init(): SQL Error #%d - %s", iError, szError)
       
#else
        g_hVault = nvault_open("zp_bank")
        if(g_hVault == INVALID_HANDLE)
                set_fail_state("Can't create/load vault 'zp_bank'")

#endif
}

public plugin_end()
{
        // Client's should have already been saved by now (client_disconnect is called before plugin_end).
        // But it costs nothing to be sure.
        new iPlayers[32], iNum
        get_players(iPlayers, iNum)
       
        new iPlayer
        for(new i=0; i < iNum;i++)
        {
                iPlayer = iPlayers[i]
                SaveClient(iPlayer, g_szAuth[iPlayer])
        }
       
#if defined USING_SQL
        SQL_FreeHandle(g_hSQLTuple)
       
#else
        nvault_close(g_hVault)
       
#endif
}

public client_putinserver(id)
{
        static szAuth[36]
        get_user_name(id, szAuth, charsmax(szAuth))
        copy(g_szAuth[id], charsmax(g_szAuth[]), szAuth)
       
        LoadClient(id, szAuth)       
}

public client_disconnect(id)
{       
        SaveClient(id,  g_szAuth[id])
       
        g_szAuth[id][0] = 0
        g_iAmmoPacks[id] = 0
        g_iSessionMovement[id] = 0
}

new msgSayText = -1
stock bool:SayText(const receiver, sender, const msg[], any:...)
{
        if(msgSayText == -1)
                msgSayText = get_user_msgid("SayText")
               
        if(msgSayText)
        {       
                if(!sender)
                        sender = receiver
               
                static buffer[512]
                vformat(buffer,charsmax(buffer), msg, 4)
               
                if(receiver)
                        message_begin(MSG_ONE_UNRELIABLE,msgSayText,_,receiver)
                else
                        message_begin(MSG_BROADCAST,msgSayText)
               
                write_byte(sender)
                write_string(buffer)
                message_end()
               
                return true
        }
       
        return false
}


public Task_Announce()
{
        static iPlayers[32], iNum, iPlayer
        get_players(iPlayers, iNum)
       
        for(new i=0; i < iNum;i++)
        {
                iPlayer = iPlayers[i]
                SayText(iPlayer, iPlayer, ZP_BANK_FMT, LANG_PLAYER, "ZP_BANK_ANNOUNCE")
        }
       
        set_task(get_pcvar_float(cvAnnounceTime), "Task_Announce")
}

enum
{
        CMD_DEPOSIT = 1,
        CMD_WITHDRAW,
        CMD_INFO
}

public Command_Say(id)
{
        static szArgs[32]
        read_args(szArgs, charsmax(szArgs))
        remove_quotes(szArgs)
       
        static szArg1[32], szArg2[32]
        parse(szArgs, szArg1, charsmax(szArg1), szArg2, charsmax(szArg2))
       
        new iCommand = 0
        if(equali(szArg1, "/deposit"))
                iCommand = CMD_DEPOSIT
        else if(equali(szArg1, "/withdraw"))
                iCommand = CMD_WITHDRAW
        else if(equali(szArg1, "/bank"))
                iCommand = CMD_INFO
       
        if(iCommand)
        {
                if(iCommand == CMD_INFO)
                        Command_Info(id)
                else
                {
                        new iValue = str_to_num(szArg2)
                        if(iValue <= 0)
                                SayText(id, id, ZP_BANK_FMT, id, "ZP_BANK_INVALID_AMOUNT")
                       
                        else if(iCommand == CMD_DEPOSIT)
                                Command_Deposit(id, iValue)
                        else
                                Command_Withdraw(id, iValue)
                }
               
                return PLUGIN_HANDLED
               
        }
       
        return PLUGIN_CONTINUE
}

Command_Info(id)
{
        SayText(id, id, ZP_BANK_FMT, id, "ZP_BANK_LOAD", g_iAmmoPacks[id] + g_iSessionMovement[id], g_szAuth[id])
}
       
Command_Deposit(id, iDeposit)
{
        new iCurrentAmount = zp_get_user_ammo_packs(id)
        if(!iCurrentAmount)
        {
                SayText(id, id, ZP_BANK_FMT, id, "ZP_BANK_NO_AMMO")
                return
        }
       
        if(iDeposit > iCurrentAmount)
                iDeposit = iCurrentAmount
       
        new iCurrent = g_iAmmoPacks[id] + g_iSessionMovement[id]
        new iSum = iCurrent + iDeposit
        new iBankMax = get_pcvar_num(cvBankMax)
       
        if(iBankMax && iSum > iBankMax)
        {
                iDeposit = iBankMax - iCurrent
                iSum = iBankMax
       
                SayText(id, id, ZP_BANK_FMT, id, "ZP_BANK_MAX", iBankMax)
        }
       
        if(iDeposit)
        {
                g_iSessionMovement[id] += iDeposit
               
                SayText(id, id, ZP_BANK_FMT, id, "ZP_BANK_DEPOSIT", iDeposit, iSum) //
                zp_set_user_ammo_packs(id, iCurrentAmount - iDeposit)
        }
}


Command_Withdraw(id, iWithdraw)
{
        new iDeposited = g_iAmmoPacks[id] + g_iSessionMovement[id]
        if(!iDeposited)
        {
                SayText(id, id, ZP_BANK_FMT, id, "ZP_BANK_EMPTY")
                return
        }
       
        if(iWithdraw > iDeposited)
                iWithdraw = iDeposited
       
        g_iSessionMovement[id] -= iWithdraw
       
        SayText(id, id, ZP_BANK_FMT, id, "ZP_BANK_WITHDRAW", iWithdraw, iDeposited - iWithdraw)
        zp_set_user_ammo_packs(id, zp_get_user_ammo_packs(id) + iWithdraw)
}
回复

使用道具 举报

发表于 2010-2-17 22:08:21 | 显示全部楼层 来自 中国–广东–惠州
怎么没看到楼上的。:funk:
回复

使用道具 举报

发表于 2010-12-22 09:19:07 | 显示全部楼层 来自 中国–山东–淄博
下个看看
回复

使用道具 举报

游客
回复
您需要登录后才可以回帖 登录 | 注个册吧

快速回复 返回顶部 返回列表