Only allow players from certain country's - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Only allow players from certain country's (
/showthread.php?tid=395171)
Only allow players from certain country's -
nickbouwhuis - 25.11.2012
Hey everyone!
I want my server to be accesable from only the Netherlands, Germany and Belgium. How can I do this?
Thanks!
-Nick
Re: Only allow players from certain country's -
NicholasA - 25.11.2012
Quote:
Originally Posted by nickbouwhuis
Hey everyone!
I want my server to be accesable from only the Netherlands, Germany and Belgium. How can I do this?
Thanks!
-Nick
|
You could make a kinda quiz at the start when the join they have questions like:
Vraag 1: Wat is de correcte manier om iemand te groeten
A. HEY LEKKERE BALZAK!
B. Hey hoe gaat ie?
C. Hallo kutkop ik hoop dat je word gecastreerd.
--------------------------------------------------
Vraag 2: Carglass repareert ...
A. Carglass likt poep.
B. Carglass vervangt.
C. Carglass neukt honden.
Hope youve got an idea of what i mean
AW: Only allow players from certain country's -
Skimmer - 25.11.2012
See this.
https://sampforum.blast.hk/showthread.php?tid=32509
Using,
pawn Код:
GetPlayerCountryName(playerid);
pawn Код:
if(!strcmp(GetPlayerCountryName(playerid), "Germany") || !strcmp(GetPlayerCountryName(playerid), "Belgium") || !strcmp(GetPlayerCountryName(playerid), "Netherlands"))
{
// Welcome
}
else
{
// Kick, you can't play this server
}
Re: AW: Only allow players from certain country's -
nickbouwhuis - 25.11.2012
Quote:
Originally Posted by MouseBreaker
See this. https://sampforum.blast.hk/showthread.php?tid=32509
Using,
pawn Код:
GetPlayerCountryName(playerid);
pawn Код:
if(!strcmp(GetPlayerCountryName(playerid), "Germany") || !strcmp(GetPlayerCountryName(playerid), "Belgium") || !strcmp(GetPlayerCountryName(playerid), "Netherlands")) { // Welcome } else { // Kick, you can't play this server }
|
The download links for that plugin are down
AW: Only allow players from certain country's -
Skimmer - 25.11.2012
EDIT:
http://www.bergfiles.com/i/bf4ddc21ebh32i0
Re: AW: Only allow players from certain country's -
nickbouwhuis - 25.11.2012
Quote:
Originally Posted by MouseBreaker
|
Thanks! Works for me!
Re: AW: Only allow players from certain country's -
nickbouwhuis - 26.11.2012
Quote:
Originally Posted by MouseBreaker
|
I removed it. It also kicked a lot of people that are actually from the Netherlands. Can I fix this?
Re: Only allow players from certain country's -
nickbouwhuis - 01.12.2012
Can someone help me to get this working?