Posts: 11
	Threads: 4
	Joined: Jul 2015
	
	
 
	
	
		
Quote:
| 
					Originally Posted by Kalcor   | 
 I had the same problem!
Also, i was talking with some friends of Latino America (venezuela), and they can't see the hosted tab working, but I can see it! (Im from spain)
And another question, what is going to happen with the spanish section in the forum? The spanish sa-mp community have a lot of players and I think that is neccesary to have a spanish section here!
	
 
	
	
	
		
	
 
 
	
	
	
		
	Posts: 1,605
	Threads: 61
	Joined: Jul 2012
	
Reputation: 
0
	 
	
	
		If changes occur on the hosted tab and internet tab, game-mp should accept new users.
I'm using the translator
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 805
	Threads: 75
	Joined: Aug 2013
	
Reputation: 
0
	 
	
	
		Thanks for the new feature and for the fix!
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 1,076
	Threads: 70
	Joined: Jul 2016
	
Reputation: 
0
	 
	
	
		Thanks for this, I hope we can see more in the future.
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 31
	Threads: 4
	Joined: May 2016
	
Reputation: 
0
	 
	
	
		I thought Kalcor abandoned SAMP completely?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 1,276
	Threads: 6
	Joined: Aug 2014
	
	
 
	
	
		
Quote:
| 
					Originally Posted by thekillergreece  I thought Kalcor abandoned SAMP completely? | 
 You thought wrong?
	
 
	
	
	
		
	
 
 
	
	
	
		
	Posts: 280
	Threads: 18
	Joined: Feb 2014
	
Reputation: 
0
	 
	
	
		Kalcor, why don't you add the Cyrillic to the launcher?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 1,042
	Threads: 46
	Joined: Jun 2013
	
	
 
	
	
		
Quote:
| 
					Originally Posted by SoNikMells  Kalcor, why don't you add the Cyrillic to the launcher? | 
 I'm all hands for it, it would be great.
	
 
	
	
	
		
	
 
 
	
	
	
		
	Posts: 805
	Threads: 75
	Joined: Aug 2013
	
Reputation: 
0
	 
	
	
		/ps 1 causes massive fps drop for me, I don't know if anyone else is experiencing  this as well.
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 654
	Threads: 19
	Joined: Jun 2012
	
Reputation: 
0
	 
	
	
		Thanks for the update, Kalcor!
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 1,779
	Threads: 126
	Joined: Oct 2010
	
	
 
	
	
		Fixed: 
http://forum.sa-mp.com/showpost.php?...95&postcount=2
Thank you Kalcor and SA-MP team, do you think you could make this client update required for continue using sa-mp client?
If it is optional a lot of people won't update it.
Anyways, I added this to my server:
Код:
public OnPlayerConnect(playerid)
{
	new player_version[40];
    GetPlayerVersion(playerid, player_version, sizeof player_version);
	if(strcmp(player_version, "0.3.7-R2"))
	{
		SendClientMessage(playerid, -1, "Please update your SA-MP client version: www.sa-mp.com");
		//Kick(playerid);
	}
	return 1;
}