Jump to content
  • 0

cum sa dau kick si bann?


Guest Al3xan4d

Question

4 answers to this question

Recommended Posts

  • 0

dak nu folosesti nici un mod pt admin (ca de exemplu V-Admin,A-Admin,Xtremeadmin) trebuie mai intai sa te loghezi in rcon adica /rcon login parola (parola fiind cea pe care ai bagat-o la server.cfg adica la rcon_password changeme) dupa ce te-ai logat poti folosi comenzile /rcon kick id si /rcon ban id

Sper ca ti-am fost de ajutor ;D

Link to comment
Share on other sites

  • 0

Ban:

public OnPlayerCommandText(playerid, cmdtext[])
{
	if (strcmp("/ban", cmdtext, true, 10) == 0)
	{
		Ban(playerid);
		return 1;
	}
	return 0;
}
Kick:
public OnPlayerCommandText(playerid, cmdtext[])
{
	if (strcmp("/kick", cmdtext, true, 10) == 0)
	{
		Kick(playerid);
		return 1;
	}
	return 0;
}

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.