|
楼主 |
发表于 2005-11-30 01:24:31
|
显示全部楼层
来自 中国–北京–北京–丰台区
回复: 【分享】amxmodx_to_amx插件转换
Post by lnf007
能说明下怎么用吗???? 里面附了英文的说明,大意是这样:
1、如果插件中包含下面的库文件
#include <amxmodx>
#include <amxmisc>
#include <engine>
#include <fun>
那么可以替换成
#include <amxmodx_to_amx>
2、如果插件使用 csstats, 那么在
#include <amxmodx_to_amx>
增加#include <csstats>
如果插件使用dodxmod, 那么在
#include <amxmodx_to_amx>
增加#include <dodxmod>
3、其它的,有可能需要把
public pfn_touch(ptr, ptd) {
替换成
public entity_touch(entity1, entity2) {
new ptr = entity1
new ptd = entity2 |
|