Fuction for trail for vip Mar 12, 2015 14:27:20 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by 🎃 🎃 🎃 🎃 on Mar 12, 2015 14:27:20 GMT I want my vip players have orange trail (trail 12 orange)here is zm vip .smawww.mediafire.com/download/u3056b59ahh86i6/zm_vip.sma
Fuction for trail for vip Mar 12, 2015 15:06:13 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Mar 12, 2015 15:06:13 GMT Just try below:#include <amxmodx>#include <hamsandwich>#include <cs_core>native zv_get_user_flags(id)public plugin_init(){ register_plugin("Free Trail", "1.0", "zmd94") RegisterHam(Ham_Spawn, "player", "fw_PlayerSpawn_Post", 1)}public fw_PlayerSpawn_Post(id){ if(is_user_alive(id) && zv_get_user_flags(id)) { set_task(2.0, "FreeTrail", id) }}public FreeTrail(id){ if(is_user_alive(id) && zv_get_user_flags(id)) { cs_trail_reward(id, 1, "255 140 0", 0, 0.0) }}Yet, you have to compile cs_core.sma file and add cs_core.inc file in your include folder. Just download both files from below:forums.alliedmods.net/showthread.php?t=245805#19
Fuction for trail for vip Mar 12, 2015 15:22:17 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by 🎃 🎃 🎃 🎃 on Mar 12, 2015 15:22:17 GMT Thank you . -Do you make this plugin for the nemesis ? when player normal player/vip/admin are nemesis i want the nemesis have this trail
Fuction for trail for vip Mar 12, 2015 15:25:04 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Mar 12, 2015 15:25:04 GMT Not yet. If you want, I can modify the code.
Fuction for trail for vip Mar 12, 2015 15:26:59 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by 🎃 🎃 🎃 🎃 on Mar 12, 2015 15:26:59 GMT ok
Fuction for trail for vip Mar 12, 2015 15:30:40 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Mar 12, 2015 15:30:40 GMT By the way, you are using ZPA right?
Fuction for trail for vip Mar 12, 2015 15:43:14 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by 🎃 🎃 🎃 🎃 on Mar 12, 2015 15:43:14 GMT yes i use ZPA
Fuction for trail for vip Mar 12, 2015 15:54:44 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Mar 12, 2015 15:54:44 GMT Just try below:#include <amxmodx>#include <hamsandwich>#include <zombie_plague_advance>#include <cs_core>native zv_get_user_flags(id)public plugin_init(){ register_plugin("Free Trail", "1.0", "zmd94") RegisterHam(Ham_Spawn, "player", "fw_PlayerSpawn_Post", 1)}public fw_PlayerSpawn_Post(id){ if(is_user_alive(id) && zv_get_user_flags(id)) { set_task(2.0, "FreeTrail", id) }}public FreeTrail(id){ if(is_user_alive(id) && zv_get_user_flags(id)) { cs_trail_reward(id, 1, "255 140 0", 0, 0.0) }}public zp_user_infected_post(id){ if(is_user_alive(id) && zp_get_user_nemesis(id)) { cs_trail_reward(id, 1, "255 140 0", 0, 0.0) }}
Fuction for trail for vip Mar 24, 2024 13:37:42 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by nocnitsa on Mar 24, 2024 13:37:42 GMT #include <amxmodx>#include <hamsandwich>#include <zombieplague>#include <core>native zv_get_user_flags(id);public plugin_init(){register_plugin("Free Trail", "1.0", "zmd94");RegisterHam(Ham_Spawn, "player", "fw_PlayerSpawn_Post", 1);}public fw_PlayerSpawn_Post(id){if (is_user_alive(id) && zv_get_user_flags(id)){set_task(2.0, "FreeTrail", id); }}public FreeTrail(id){if (is_user_alive(id) && zv_get_user_flags(id)){ }}public zp_user_infected_post(id){if (is_user_alive(id) && zp_get_user_nemesis(id)){ }}