[Include] Simple Script Include (SSI)
#6

Quote:
Originally Posted by GAMER_PS2
Посмотреть сообщение
Thanks for tips guys and yeah your correct @wups i forget to delete the c on SSI
then i forget also to make it && dont worry next time i will make it cooler

Anyway the Thread is update link
again

pawn Код:
stock MessageToRcon(color, const msg[])
{
   for (new i=0; i<MAX_PLAYERS; i++)
   {
      if(IsPlayerConnected(i) || IsPlayerAdmin(i))
      {
           SendClientMessage(i,color,msg);
      }
   }
   return 1;
}
Should be:
pawn Код:
stock MessageToRcon(color, const msg[])
{
   for (new i=0; i<MAX_PLAYERS; i++)
   {
      if(IsPlayerConnected(i) && IsPlayerAdmin(i))
      {
           SendClientMessage(i,color,msg);
      }
   }
   return 1;
}
pawn Код:
||
that means "or"

pawn Код:
&&
that means "and"

learn some basic....

anyway is good
Reply


Messages In This Thread
Simple Script Include (SSI) - by GAMER_PS2 - 06.11.2011, 07:27
Re: Simple Script Include (SSI) - by Lorenc_ - 06.11.2011, 07:48
Re: Simple Script Include (SSI) - by [HiC]TheKiller - 06.11.2011, 08:13
Re: Simple Script Include (SSI) - by wups - 06.11.2011, 08:14
Re: Simple Script Include (SSI) - by GAMER_PS2 - 06.11.2011, 08:42
Re: Simple Script Include (SSI) - by Speed - 06.11.2011, 08:51
Re: Simple Script Include (SSI) - by System64 - 06.11.2011, 08:52
Re: Simple Script Include (SSI) - by GAMER_PS2 - 06.11.2011, 09:04
Re: Simple Script Include (SSI) - by Danice Ton - 06.11.2011, 09:27
Re: Simple Script Include (SSI) - by GAMER_PS2 - 06.11.2011, 09:37

Forum Jump:


Users browsing this thread: 3 Guest(s)