lili2009 发表于 2010-3-24 01:28:05

4000 金钱的礼物

//添加一个礼物. 名称为"钱包", 效果为"获得金钱 4000", 获得几率为 50%,. 函数为 gift_money .
        register_gift( "gift_money", "钱包", "获得金钱 4000.", 50);
}

public gift_money( id){
       
        //给玩家加4000块
        new n_money = cs_get_user_money( id) + 4000;
        cs_set_user_money( id, n_money);
}

wzx616313359 发表于 2010-4-26 20:51:02

需要 模型么?
页: [1]
查看完整版本: 4000 金钱的礼物