Raised This Month: $ Target: $400
 0% 

public plugin_precache() help


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Da_sk8rboy
Veteran Member
Join Date: Jul 2006
Old 10-14-2006 , 00:34   public plugin_precache() help
Reply With Quote #1

where should i place this in my script to get the model precached.?

Here is the Precache:

Code:
public plugin_precache()
{
     precache_model("models/player/spiderman/spiderman.mdl")
}
here is my script:

Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <cstrike>
 
#define PLUGIN "Admin_health"
#define VERSION "1.0"
#define AUTHOR "HeadxShot"
 
 // Add your code here...
public plugin_init()
{
 register_plugin(PLUGIN, VERSION, AUTHOR)
     register_concmd("amx_hp", "cmd_hp", ADMIN_SLAY, "<target> <hp>")
}
 
public cmd_hp(id, level, cid)
{
     if (!cmd_access(id, level, cid, 3))
        return PLUGIN_HANDLED
 
     new Arg1[24]
     new Arg2[4]
 
     //Get the command arguments from the console
     read_argv(1, Arg1, 23)
     read_argv(2, Arg2, 3)
 
     //Convert the health from a string to a number
     new Health = str_to_num(Arg2)
     if(Health < 1)
     {
          // Print a message saying health has to be greater than 0.
          // If they get their health set to less than 1.
          // It will kill the player automatically.
          return PLUGIN_HANDLED;
     }
 
     //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(players, num)
          new i
          for (i=0; i<num; i++)
          {
               if (!Team)
               {
                    set_user_health(players[i], Health)
                    cs_set_user_model(players[i], "spiderman")
               } else {
                    if (get_user_team(players[i]) == Team)
                    {
                         set_user_health(players[i], Health)
                         cs_set_user_model(players[i], "spiderman")
                    }
               }
          }
     } else {
          new player = cmd_target(id, Arg1, 1)
          if (!player)
          {
               console_print(id, "Sorry, player %s could not be found or targetted!", Arg1)
               return PLUGIN_HANDLED
          } else {
               set_user_health(player, Health)
               cs_set_user_model(player, "spiderman")
          }
     }
 
     return PLUGIN_HANDLED
     
   }
   }
     }
 
     return PLUGIN_HANDLED
     
   }
Hopefully someone can tell me where to put it in my script, that is all i need to get my plugin to work fully.
__________________
i stop around here and there.
Da_sk8rboy is offline
organizedKaoS
Senior Member
Join Date: Feb 2006
Old 10-14-2006 , 00:55   Re: public plugin_precache() help
Reply With Quote #2

I usually put it before plugin init.

But I have seen it at the end of the script and still work.

Just throw it in as you typed it and it should work.
organizedKaoS is offline
Emp`
AMX Mod X Plugin Approver
Join Date: Aug 2005
Location: Decapod 10
Old 10-14-2006 , 00:58   Re: public plugin_precache() help
Reply With Quote #3

as long as its in the code and not in a function
Emp` is offline
Send a message via AIM to Emp` Send a message via MSN to Emp` Send a message via Yahoo to Emp` Send a message via Skype™ to Emp`
commonbullet
Veteran Member
Join Date: Oct 2005
Old 10-14-2006 , 00:59   Re: public plugin_precache() help
Reply With Quote #4

Quote:
Originally Posted by Emp` View Post
as long as its in the code and not in a function
and... after includes
commonbullet is offline
Send a message via ICQ to commonbullet Send a message via MSN to commonbullet
Da_sk8rboy
Veteran Member
Join Date: Jul 2006
Old 10-14-2006 , 01:00   Re: public plugin_precache() help
Reply With Quote #5

im going to test it.
__________________
i stop around here and there.
Da_sk8rboy is offline
LittleDude
Member
Join Date: Dec 2004
Location: Selah, WA
Old 10-14-2006 , 01:08   Re: public plugin_precache() help
Reply With Quote #6

stop making new topics in the forums asking about the same stuff for the same exact plugin...
__________________
It is stupid to be stupid, and stupid to not be stupid
LittleDude is offline
Send a message via AIM to LittleDude
Da_sk8rboy
Veteran Member
Join Date: Jul 2006
Old 10-14-2006 , 01:18   Re: public plugin_precache() help
Reply With Quote #7

It worked!!! Yea! thnx for the help! its not even that big of a deal little.
__________________
i stop around here and there.
Da_sk8rboy is offline
LittleDude
Member
Join Date: Dec 2004
Location: Selah, WA
Old 10-14-2006 , 01:20   Re: public plugin_precache() help
Reply With Quote #8

no but it's annoying to see you post 4 different topics about the same thing...
__________________
It is stupid to be stupid, and stupid to not be stupid
LittleDude is offline
Send a message via AIM to LittleDude
Da_sk8rboy
Veteran Member
Join Date: Jul 2006
Old 10-14-2006 , 01:29   Re: public plugin_precache() help
Reply With Quote #9

well then dont look at my post, get over it.
__________________
i stop around here and there.
Da_sk8rboy is offline
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 04:58.


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