View Single Post
iceeedr
Veteran Member
Join Date: Apr 2017
Location: Brazil
Old 02-12-2019 , 15:34   Re: Quick & No scope detector
Reply With Quote #24

This error is strange, because checking if the client is alive, he is necessarily connected ... but nevertheless try the change below:

Code:
public fw_EvCurWeapon(id)
{
	if(is_user_alive(id))
	{
		ScopeData[id][ScopeType] = cs_get_user_zoom(id)
	}
}


Code:
public fw_EvCurWeapon(id)
{
	if(!is_user_connected(id)) return;
	
	if(is_user_alive(id))
	{
		ScopeData[id][ScopeType] = cs_get_user_zoom(id)
	}
}
__________________


Quote:
Originally Posted by fysiks View Post
Please stop trying to help. You appear to just be posting random stuff. Wait until you actually understand more about AMX Mod X and how the game works.
https://iceeedr.com.br/
iceeedr is offline
Send a message via Skype™ to iceeedr