Do I do "if" or Do "else if"
#1

>>>>>>Ignore Indentation<<<<<<<<

I'm Making a Anti-Cheat for my server, So Far I have set the timer and all of that, now:

Код:
public anticheat()
{
	if(weaponid == 38) //minigun
  {
    BanEx( playerid, "MiniGun Hacking" );
  }
  
}
I want the next one to be a flamethrower! do I have to do it like this?:

Код:
public anticheat()
{
   if(weaponid == 38) //minigun
  {
    BanEx( playerid, "MiniGun Hacking" );
  }
  
  else if(weaponid == 37) //flamethrower
  {
    BanEx( playerid, "Flamethrower Hacking" );
  }
  
}
Or Just keep it like this:

Код:
public anticheat()
{
	if(weaponid == 38) //minigun
  {
    BanEx( playerid, "MiniGun Hacking" );
  }
  if(weaponid == 37) //
  {
    BanEx( playerid, "flamethrower Hacking" );
  }
  
}

Reply


Messages In This Thread
Do I do "if" or Do "else if" - by Eazy_Efolife - 03.09.2009, 15:37
Re: Do I do "if" or Do "else if" - by Butilka - 03.09.2009, 15:50
Re: Do I do "if" or Do "else if" - by Eazy_Efolife - 03.09.2009, 15:51
Re: Do I do "if" or Do "else if" - by Correlli - 03.09.2009, 15:55
Re: Do I do "if" or Do "else if" - by Eazy_Efolife - 03.09.2009, 16:00
Re: Do I do "if" or Do "else if" - by Andom - 03.09.2009, 16:00
Re: Do I do "if" or Do "else if" - by Correlli - 03.09.2009, 16:08
Re: Do I do "if" or Do "else if" - by Eazy_Efolife - 03.09.2009, 16:14
Re: Do I do "if" or Do "else if" - by coole210 - 03.09.2009, 18:11

Forum Jump:


Users browsing this thread: 3 Guest(s)