Jump to content
  • 0

pomoc Neviem ako sa to vola?


Macko

Dotaz

Dobrý Večer,

ako by som spravil že som admin a že ked niekto zada zlí napriklad /gulas tak mi ukaze ze ten hrač ten prikaz pouzil ako to je na rze?

Dakujem.

Link to comment
Share on other sites

12 odpovědí na tuto otázku

Recommended Posts

  • 0

Dobrý Večer,

ako by som spravil že som admin a že ked niekto zada zlí napriklad /gulas tak mi ukaze ze ten hrač ten prikaz pouzil ako to je na rze?

Dakujem.

 

..... :slap: další takovej .... :cry:

Link to comment
Share on other sites

  • 0

public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/mycommand", cmdtext, true, 10) == 0)
{
 // Do something here
 return 1;
}
return Command();
}
stock Command()
{
for(new i; i<MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerAdmin(i))
{
new str[128];
format(str,128,"Hráč %s použil príkaz %s",Name,cmdtext);
SendClientMessage(i,-1,str);
}
}
}
}

 

//Neskúšal som to takže neviem ani či to hádže errors ani či to funguje .. Každopádne skús :d

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...