|
发表于 2008-2-13 22:51:13
|
显示全部楼层
来自 中国–广东–惠州
回复: 关于"index out of bounds"的问题
在这少了个判断,增加两行代码试下.- public pfn_touch (toucher, touched) {
-
- new ClassName1[32]
- new ClassName2[32]
- if(!is_valid_ent(toucher))
- return PLUGIN_CONTINUE
- if (is_valid_ent(toucher))
- entity_get_string(toucher, EV_SZ_classname, ClassName1, 31)
-
- if (is_valid_ent(touched))
- entity_get_string(touched, EV_SZ_classname, ClassName2, 31)
- if(equal(ClassName1, "rpglancher")&&equal(ClassName2, "rpglancher")) //增加行
- return PLUGIN_CONTINUE //增加行
-
- if (equal(ClassName1, "rpgrocket")) {
复制代码 |
|