Free NVG ! May 30, 2016 9:55:41 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on May 30, 2016 9:55:41 GMT Nice.
Free NVG ! Jun 12, 2016 17:22:18 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by pervade on Jun 12, 2016 17:22:18 GMT May this help im using hlds version 6027Im getting an error log in last nvg code you wrote. 06/12/ - 14:30:33: Start of error session.L 06/12/2016 - 14:30:33: Info (map "zm_base_humans_lg") (file "addons/amxmodx/logs/error_20160612.log")L 06/12/2016 - 14:30:33: [ZP] Invalid Player (3)L 06/12/2016 - 14:30:33: [AMXX] Displaying debug trace (plugin "nvg.amxx")L 06/12/2016 - 14:30:33: [AMXX] Run time error 10: native error (native "zp_set_user_nightvision")L 06/12/2016 - 14:30:33: [AMXX] [0] nvg.sma::zp_give_nightvision (line 16)L 06/12/2016 - 15:34:47: Start of error session.L 06/12/2016 - 15:34:47: Info (map "zm_snowbase4") (file "addons/amxmodx/logs/error_20160612.log")L 06/12/2016 - 15:34:47: [ZP] Invalid Player (1)L 06/12/2016 - 15:34:47: [AMXX] Displaying debug trace (plugin "nvg.amxx")L 06/12/2016 - 15:34:47: [AMXX] Run time error 10: native error (native "zp_set_user_nightvision")L 06/12/2016 - 15:34:47: [AMXX] [0] nvg.sma::zp_give_nightvision (line 16)L 06/12/2016 - 15:59:12: [ZP] Invalid Player (1)L 06/12/2016 - 15:59:12: [AMXX] Displaying debug trace (plugin "nvg.amxx")L 06/12/2016 - 15:59:12: [AMXX] Run time error 10: native error (native "zp_set_user_nightvision")L 06/12/2016 - 15:59:12: [AMXX] [0] nvg.sma::zp_give_nightvision (line 16)L 06/12/2016 - 16:01:10: Start of error session.L 06/12/2016 - 16:01:10: Info (map "zm_snow_S1H_v2") (file "addons/amxmodx/logs/error_20160612.log")L 06/12/2016 - 16:01:10: [ZP] Invalid Player (1)L 06/12/2016 - 16:01:10: [AMXX] Displaying debug trace (plugin "nvg.amxx")L 06/12/2016 - 16:01:10: [AMXX] Run time error 10: native error (native "zp_set_user_nightvision")L 06/12/2016 - 16:01:10: [AMXX] [0] nvg.sma::zp_give_nightvision (line 16)Thanks.
Free NVG ! Jun 13, 2016 3:20:16 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Jun 13, 2016 3:20:16 GMT Just use below:#include <amxmodx> #include <hamsandwich> #include <zombieplague> public plugin_init() { register_plugin("Free Nightvision" ,"1.0", "zmd94") RegisterHam(Ham_Spawn, "player", "fw_HamSpawn", 1) } public fw_HamSpawn(id) { if(is_user_alive(id) && !zp_get_user_zombie(id)) { zp_set_user_nightvision(id, 1) client_cmd(id, "nightvision") }} public zp_user_humanized_post(id, survivor) { if(is_user_alive(id)) { zp_set_user_nightvision(id, 1) client_cmd(id, "nightvision") }}
Free NVG ! Jun 16, 2016 7:05:44 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by pervade on Jun 16, 2016 7:05:44 GMT Totaly solved thanks zmd94!No errors come up now.
Free NVG ! Jun 17, 2016 15:03:34 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Jun 17, 2016 15:03:34 GMT Nice.
Free NVG ! Aug 3, 2016 21:13:18 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Amit Deb on Aug 3, 2016 21:13:18 GMT Old Threat But I Need It !For Zombies Already Have In Zombieplague.cfg !i Wanted ,Humans Have NVG For Free But It's Not Turn On When Human Join Game Or Round Start , If I Press "N" Then It'll On !And Press "N" Again To Off !
Free NVG ! Aug 4, 2016 7:53:12 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by pervade on Aug 4, 2016 7:53:12 GMT Aug 3, 2016 21:13:18 GMT Amit Deb said:Old Threat But I Need It !For Zombies Already Have In Zombieplague.cfg !i Wanted ,Humans Have NVG For Free But It's Not Turn On When Human Join Game Or Round Start , If I Press "N" Then It'll On !And Press "N" Again To Off ! For zombies use the zombieplague.cfg for humans to be auto turned on at round start use this:#include <amxmodx> #include <hamsandwich> #include <zombieplague> public plugin_init() { register_plugin("[ZP] Nightvision on Spawn" ,"1.0", "Vechta <3 :D") RegisterHam(Ham_Spawn, "player", "zp_give_nightvision", 1) } public zp_give_nightvision(id) { if (!zp_get_user_zombie(id)) {zp_set_user_nightvision(id, 1) }} public zp_user_humanized_post(id, survivor) {zp_set_user_nightvision(id, 1) }
Free NVG ! Aug 4, 2016 16:03:11 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Amit Deb on Aug 4, 2016 16:03:11 GMT Bro I Want Not Auto Turn On If Humans Press "N" It'll On And Press "N" Again To Off !
Free NVG ! Aug 4, 2016 16:56:03 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Amit Deb on Aug 4, 2016 16:56:03 GMT Thanks Working !
Free NVG ! Aug 6, 2016 0:12:00 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Amit Deb on Aug 6, 2016 0:12:00 GMT Bro , Please Fix It !L 08/06/2016 - 05:40:33: [AMXX] Displaying debug trace (plugin "nvg.amxx")L 08/06/2016 - 05:40:33: [AMXX] Run time error 10: native error (native "zp_set_user_nightvision")L 08/06/2016 - 05:40:33: [AMXX] [0] ure62mp7.sma.p::zp_give_nightvision (line 16)
Free NVG ! Aug 6, 2016 10:27:56 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by pervade on Aug 6, 2016 10:27:56 GMT Aug 4, 2016 16:56:03 GMT Amit Deb said:Thanks Working ! to fix the error log:try this one:#include <amxmodx> #include <hamsandwich> #include <zombieplague> public plugin_init() { register_plugin("[ZP] Nightvision on Spawn" ,"1.0", "Vechta <3 :D") RegisterHam(Ham_Spawn, "player", "zp_give_nightvision", 1) } public zp_give_nightvision(id) { if (!zp_get_user_zombie(id)) {zp_set_user_nightvision(id, 1) }}public zp_user_humanized_post(id, survivor) { if(is_user_alive(id)) { zp_set_user_nightvision(id, 1) client_cmd(id, "nightvision") }}
Free NVG ! Aug 6, 2016 17:49:10 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Amit Deb on Aug 6, 2016 17:49:10 GMT Bro Problem Still L 08/06/2016 - 23:12:01: [AMXX] Displaying debug trace (plugin "nvg.amxx")L 08/06/2016 - 23:12:01: [AMXX] Run time error 10: native error (native "zp_set_user_nightvision")L 08/06/2016 - 23:12:01: [AMXX] [0] 2ix2jijv.sma.p::zp_give_nightvision (line 31)
Free NVG ! Aug 7, 2016 10:15:41 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Aug 7, 2016 10:15:41 GMT Just try below:#include <amxmodx> #include <hamsandwich> #include <zombieplague> public plugin_init() { register_plugin("[ZP] Nightvision on Spawn" ,"1.0", "Vechta <3 :D") RegisterHam(Ham_Spawn, "player", "zp_give_nightvision", 1) } public zp_give_nightvision(id) { if (is_user_alive(id) && !zp_get_user_zombie(id)) { zp_set_user_nightvision(id, 1) }}public zp_user_humanized_post(id, survivor) { if(is_user_alive(id)) { zp_set_user_nightvision(id, 1) client_cmd(id, "nightvision") }}
Free NVG ! Aug 7, 2016 14:24:11 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Amit Deb on Aug 7, 2016 14:24:11 GMT Zmd Bro This NVG Is Auto On ! But The Good One Is What You Gave !Please Fix Your Plugin !
Free NVG ! Aug 7, 2016 17:30:38 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by |RrebEliii|* on Aug 7, 2016 17:30:38 GMT Just Go To cstrike/adnoos/amxmodx/confgis/zombieplague.cfg Open Zombie Plague.cfg And Find This ---->// Nightvision// ----------------------zp_nvision_custom 1 // Enable custom nightvisionzp_nvision_radius 80 // Custom nightvision radiuszp_nvision_zombie 1 // Give nightvision to zombies [0-disabled // 1-give only // 2-give and enable]zp_nvision_zombie_color_R 100 // Zombies custom nightvision color (red)zp_nvision_zombie_color_G 100 // Zombies custom nightvision color (green)zp_nvision_zombie_color_B 100 // Zombies custom nightvision color (blue)zp_nvision_human 0 // Give nightvision to humans [0-disabled // 1-give only // 2-give and enable]zp_nvision_human_color_R 0 // Humans custom nightvision color (red)zp_nvision_human_color_G 0 // Humans custom nightvision color (green)zp_nvision_human_color_B 100 // Humans custom nightvision color (blue)zp_nvision_spec 1 // Give nightvision to spectators [0-disabled // 1-give only // 2-give and enable]zp_nvision_spec_color_R 100 // Spectators custom nightvision color (red)zp_nvision_spec_color_G 100 // Spectators custom nightvision color (green)zp_nvision_spec_color_B 100 // Spectators custom nightvision color (blue)zp_nvision_nemesis 2 // Give nightvision to nemesis [0-disabled // 1-give only // 2-give and enable]zp_nvision_nemesis_color_R 150 // Nemesis custom nightvision color (red)zp_nvision_nemesis_color_G 0 // Nemesis custom nightvision color (green)zp_nvision_nemesis_color_B 0 // Nemesis custom nightvision color (blue)zp_nvision_assassin 2 // Give nightvision to assassin [0-disabled // 1-give only // 2-give and enable]zp_nvision_assassin_color_R 0 // Assassin custom nightvision color (red)zp_nvision_assassin_color_G 0 // Assassin custom nightvision color (green)zp_nvision_assassin_color_B 150 // Assassin custom nightvision color (blue)zp_nvision_dragon 2 // Give nightvision to Dragon [0-disabled // 1-give only // 2-give and enable]zp_nvision_dragon_color_R 0 // Dragon custom nightvision color (red)zp_nvision_dragon_color_G 0 // Dragon custom nightvision color (green)zp_nvision_dragon_color_B 100 // Dragon custom nightvision color (blue)zp_nvision_knifer_color_R 150 // knifer custom nightvision color (red)zp_nvision_knifer_color_G 0 // knifer custom nightvision color (green)zp_nvision_knifer_color_B 150 // knifer custom nightvision color (blue)zp_nvision_survivor 0 // Give nightvision to survivor [0-disabled // 1-give only // 2-give and enable]zp_nvision_survivor_color_R 0 // Survivor custom nightvision color (red)zp_nvision_survivor_color_G 0 // Survivor custom nightvision color (green)zp_nvision_survivor_color_B 150 // Survivor custom nightvision color (blue)zp_nvision_sniper 0 // Give nightvision to sniper [0-disabled // 1-give only // 2-give and enable]zp_nvision_sniper_color_R 0 // Sniper custom nightvision color (red)zp_nvision_sniper_color_G 0 // Sniper custom nightvision color (green)zp_nvision_sniper_color_B 150 // Sniper custom nightvision color (blueAffter This JUST Edit this What U Want Enabled or DisabledAnd Save And Restart Srw And Just Click "N"