Raised This Month: $ Target: $400
 0% 

Loose Identation!


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
totalcsscripting
BANNED
Join Date: Jul 2010
Old 08-05-2010 , 18:18   Loose Identation!
Reply With Quote #1

i have this 2 plugins and when i compile them it gives me two warnings of loosed identation.

PHP Code:
public plugin_init()
{
register_concmd("chaleco","cmd_armor",ADMIN_SLAY,"")
register_clcmd("cabeza""conjure_menu"ADMIN_SLAY"")
    return 
PLUGIN_CONTINUE
}
public 
cmd_hp(idlevelcid)
{
     if (!
cmd_access(idlevelcid3))
        return 
PLUGIN_HANDLED
 
     
new Arg1[24]
     new 
Arg2[4]
 
     
//Get the command arguments from the console
     
read_argv(1Arg123)
     
read_argv(2Arg23)
 
     
//Convert the health from a string to a number
     
new Health str_to_num(Arg2)
 
     
//Is the first character the @ symbol?
     
if (Arg1[0] == '@')
     {
          new 
Team 0
          
if (equali(Arg1[1], "CT"))
          {
               
Team 2
          
} else if (equali(Arg1[1], "T")) {
               
Team 1
          
}
          new 
players[32], num
          get_players
(playersnum)
          new 
i
          
for (i=0i<numi++)
          {
               if (!
Team)
               {
                    
set_user_health(players[i], Health)
               } else {
                    if (
get_user_team(players[i]) == Team)
                    {
                         
set_user_health(players[i], Health)
                    }
               }
          }
     } else {
          new 
player cmd_target(idArg17)
          if (!
player)
          {
               
console_print(id""Arg1)
               return 
PLUGIN_HANDLED
          
} else {
               
set_user_health(playerHealth)
          }
     }
 
     return 
PLUGIN_HANDLED
}
public 
cmd_armor(idlevelcid)
{
     if (!
cmd_access(idlevelcid3))
        return 
PLUGIN_HANDLED
         
     
new Arg1[24]
     new 
Arg2[4]
     
read_argv(1Arg123)
     
read_argv(2Arg23)
 
     new 
Armor str_to_num(Arg2)
     
     new 
player cmd_target(idArg17)
     if (!
player)
     {
               
console_print(id""Arg1)
               return 
PLUGIN_HANDLED
     
} else {
               
set_user_armor(playerArmor)
     }
 
     return 
PLUGIN_HANDLED

totalcsscripting is offline
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 08-05-2010 , 18:22   Re: Loose Identation!
Reply With Quote #2

Make sure your indentation is all done in either spaces or tabs. Also, make sure you use the same number of spaces or tabs each time you indent.

Lines 5, 10, and 63 are ones that I can tell are not following the advice I just typed above.
__________________
fysiks is offline
totalcsscripting
BANNED
Join Date: Jul 2010
Old 08-05-2010 , 19:01   Re: Loose Identation!
Reply With Quote #3

thanks!!
totalcsscripting is offline
Emp0wer
Member
Join Date: Jul 2010
Location: Ukraine mother
Old 08-06-2010 , 14:48   Re: Loose Identation!
Reply With Quote #4

Hmmm... I think you lost identation. No?

The errors gives you the answer. Why you are asking such a stupid questions?
Emp0wer is offline
Send a message via ICQ to Emp0wer Send a message via Skype™ to Emp0wer
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 00:11.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode