amontillado 發表於 15-4-2009 17:36:02

AMX/AMXX繁化區 (義務為樂古會員服務) (絕對附上源碼)

本帖最後由 amontillado 於 16-4-2009 16:18 編輯

我想運用我的知識服務樂古會員



此貼我會義務幫人把AMX/AMXX 繁化為中文 (100%成功率)

至於修改AMX/AMXX,要是會員提出,我都會嘗試為你們修改。 ( 60% 成功率)



最後,我會把sma源碼給你們。

我是絕對不會加入任何不需要的字眼。


我開此貼的目的是想活潑樂古此地方,希望大家有問題可以歡迎提出 =]   

另外,我希望懂得amxx的人可以在此交留心得

誠誠誠 發表於 15-4-2009 17:49:23

這樣就謝謝你了
幫我繁化啦

amontillado 發表於 15-4-2009 18:03:01

這樣就謝謝你了
幫我繁化啦
誠誠誠 發表於 15-4-2009 17:49 http://www.nakuz.com/bbs/images/common/back.gif

9:00點前幫你完成繁化工作

誠誠誠 發表於 15-4-2009 18:13:11



9:00點前幫你完成繁化工作
amontillado 發表於 15-4-2009 18:03 http://www.nakuz.com/bbs/images/common/back.gif
唔該哂,20號前交貨係ok

amontillado 發表於 15-4-2009 19:28:26


唔該哂,20號前交貨係ok
誠誠誠 發表於 15-4-2009 18:13 http://www.nakuz.com/bbs/images/common/back.gif


檔案經完成繁化

可能文句唔好,但我轉了UTF-8編碼

你可以直接修改[]

http://www.sendspace.com/file/0bcq12

誠誠誠 發表於 15-4-2009 19:42:48

本帖最後由 誠誠誠 於 15-4-2009 21:57 編輯




檔案經完成繁化

可能文句唔好,但我轉了UTF-8編碼

你可以直接修改[]

http://www.sendspace.com/file/0bcq12
amontillado 發表於 15-4-2009 19:28 http://www.nakuz.com/bbs/images/common/back.gif
唔該哂呀,好快手呀

Abc係你係你 發表於 15-4-2009 22:00:08

我想你幫我改sma
依個sma係買無限子彈sma
但係我想你幫我整做唔洗買
全部玩家一開始都有無限子彈
http://www.sendspace.com/file/03zvxr

又畀cs板主ban左 發表於 15-4-2009 23:05:53

我想你幫我改sma
依個sma係買無限子彈sma
但係我想你幫我整做唔洗買
全部玩家一開始都有無限子彈
http://www.sendspace.com/file/03zvxr
Abc係你係你 發表於 15-4-2009 22:00 http://www.nakuz.com/bbs/images/common/back.gif
/* Buy Unlimited ammo for one round!
Idea and 50% of the plugin by: Noizza
thx to nightscreem for his help cause this is my first plugin...
He mades it possible to end the effect @ the end of the round!
but it wont run without Fox-NL... he made the plugin standalone so
that no superheromod is needed!
MODULES:
you will need the engine and the cstrike module to run this plugin!
*/


#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <engine>

public plugin_init() {
        register_plugin("buyuammo","0.1","Noizza")
        register_event("CurWeapon","check_weapon","be","1=1")
}


public check_weapon(id) {
                new wpnid = read_data(2)
                new clip = read_data(3)
                if(wpnid==CSW_C4||wpnid==CSW_KNIFE||wpnid==CSW_HEGRENADE||wpnid==CSW_SMOKEGRENADE||wpnid==CSW_FLASHBANG) return
                if(clip==0) {
                        new wpnname
                        get_weaponname(wpnid,wpnname,31)
                        new wpn = -1
                        while((wpn=find_ent_by_class(wpnid,wpnname))!=0) {
                                if(id==entity_get_edict(wpn,EV_ENT_owner)) {
                                        cs_set_weapon_ammo(wpn,maxclip(wpnid))
                                        break
                                }
                }
        }
}

stock maxclip(wpnid) {
                new ca = 0
                switch (wpnid) {
                        case CSW_P228 : ca = 13
                        case CSW_SCOUT : ca = 10
                        case CSW_HEGRENADE : ca = 0
                        case CSW_XM1014 : ca = 7
                        case CSW_C4 : ca = 0
                        case CSW_MAC10 : ca = 30
                        case CSW_AUG : ca = 30
                        case CSW_SMOKEGRENADE : ca = 0
                        case CSW_ELITE : ca = 15
                        case CSW_FIVESEVEN : ca = 20
                        case CSW_UMP45 : ca = 25
                        case CSW_SG550 : ca = 30
                        case CSW_GALI : ca = 35
                        case CSW_FAMAS : ca = 25
                        case CSW_USP : ca = 12
                        case CSW_GLOCK18 : ca = 20
                        case CSW_AWP : ca = 10
                        case CSW_MP5NAVY : ca = 30
                        case CSW_M249 : ca = 100
                        case CSW_M3 : ca = 8
                        case CSW_M4A1 : ca = 30
                        case CSW_TMP : ca = 30
                        case CSW_G3SG1 : ca = 20
                        case CSW_FLASHBANG : ca = 0
                        case CSW_DEAGLE        : ca = 7
                        case CSW_SG552 : ca = 30
                        case CSW_AK47 : ca = 30
                }
                return ca
}

amontillado 發表於 15-4-2009 23:17:47


/* Buy Unlimited ammo for one round!
Idea and 50% of the plugin by: Noizza
thx to nightscreem for his help cause this is my first plugin...
He mades it possible to end the effect @ the end of the ro ...
又畀cs板主ban左 發表於 15-4-2009 23:05 http://www.nakuz.com/bbs/images/common/back.gif
多謝你幫手哦

岩岩轉埋amxx :)

http://www.sendspace.com/file/kshzmn

Abc係你係你 發表於 15-4-2009 23:20:53

o,真係唔該哂2位呀
得左啦
頁: [1] 2 3 4 5 6 7
查看完整版本: AMX/AMXX繁化區 (義務為樂古會員服務) (絕對附上源碼)