|
/*这里就是礼物模型的路径.如果只用一个的话,
就把后面的逗号去掉,如果超过一个的话,
每个模型之间要用逗号隔开
比如:
这是超过一个模型的情况下
new const models[][] = {
"first",
"second",
"third"
};
只用一个的情况下
new const models[][] = {
"only thins one"
}
*/
new const models[][] = {
/*"models/tzlw/w_present.mdl",
"models/tzlw/w_present2.mdl"*/
"models/tzlw/dtgift.mdl"
};
/**
*出现礼物包时的声音
*/
new const spawnsounds[][] = {
/*"tzlw/respawn.wav",
"tzlw/respawn2.wav"*/
"dt/getgift.wav"
};
/**
*获取礼物包时的声音
*/
new const getsounds[][] = {
/*"tzlw/pick.wav"*/
"dt/getnothing.wav"
};
|
|