AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   User Frags (https://forums.alliedmods.net/showthread.php?t=134525)

totalcsscripting 08-05-2010 18:32

User Frags
 
PHP Code:

public plugin_init()
{
register_concmd("chaleco","cmd_armor",ADMIN_SLAY,"")
    return 
PLUGIN_CONTINUE
}

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


I want that user can apply it. Not only admins.
I mean, anyone can set his armor by himself in the console.

Is that possible?

Thankss

fysiks 08-05-2010 19:13

Re: User Frags
 
Yes. Create another function and just set the armour (armor) for the person that runs the command.

totalcsscripting 08-05-2010 19:39

Re: User Frags
 
Quote:

Originally Posted by fysiks (Post 1262738)
Yes. Create another function and just set the armour (armor) for the person that runs the command.

Can't be done by modifiying the acces, like instead of ADMIN_SLAY, USER

fysiks 08-05-2010 19:57

Re: User Frags
 
Quote:

Originally Posted by totalcsscripting (Post 1262763)
Can't be done by modifiying the acces, like instead of ADMIN_SLAY, USER

That command is not made to set your own armor. It is made to set other players' armor.

totalcsscripting 08-05-2010 20:12

Re: User Frags
 
Quote:

Originally Posted by fysiks (Post 1262780)
That command is not made to set your own armor. It is made to set other players' armor.

Can you show to me how the function should be?

fysiks 08-05-2010 20:17

Re: User Frags
 
Quote:

Originally Posted by totalcsscripting (Post 1262801)
Can you show to me how the function should be?

You are in Scripting Help. I helped you. Now, go write something and test it. If it doesn't work post it here. Then I will help you fix it.

infek 08-07-2010 06:16

Re: User Frags
 
Dude do what fysiks said.

Basically you just need to make ADMIN_SLAY to 0 so any one could access it

fysiks 08-07-2010 13:17

Re: User Frags
 
Quote:

Originally Posted by infek (Post 1264015)
Dude do what fysiks said.

Basically you just need to make ADMIN_SLAY to 0 so any one could access it

No, you don't understand what he is asking. He wants people to be able to set their own armor. That function is for setting other peoples' armor.


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

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