Raised This Month: $ Target: $400
 0% 

model plugin help


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
AAleaderNik
Member
Join Date: Dec 2005
Old 04-02-2006 , 04:26   model plugin help
Reply With Quote #1

Code:
#include <amxmodx>
#include <cstrike>
#include <amxmisc>

public plugin_init()
{
	register_plugin("Model basis","1.0","AANik")
	register_event("Resethud","resetModel","b")
	return PLUGIN_CONTINUE
}

public plugin_precache() {
	precache_model("models/player/arctic/arctic.mdl")
	
	return PLUGIN_CONTINUE
}

public resetModel(id, level, cid) {
	if (get_user_flags(id) & ADMIN_CFG) {
		new CsTeams:userTeam = cs_get_user_team(id)
		if (userTeam == CS_TEAM_T) {
			cs_set_user_model(id, "arctic")
		}
		else {
			cs_reset_user_model(id)
		}
	}
	return PLUGIN_CONTINUE
}
whats wrong with this that would make it not work supposedly nobody has to dl the model maybe my path is wrong i dont know but i need some help
AAleaderNik is offline
v3x
Veteran Member
Join Date: Oct 2004
Location: US
Old 04-02-2006 , 06:17  
Reply With Quote #2

"Resethud" should be "ResetHUD" ;)
__________________
What am I doing these days? Well, I run my own Rust server. It's heavily modded. If you'd like to join, the ip is 167.114.101.67:28116

I also created a website called Rust Tools. It will calculate and tell you the raw amounts of resources needed to craft items.
v3x is offline
AAleaderNik
Member
Join Date: Dec 2005
Old 04-02-2006 , 06:29  
Reply With Quote #3

thanks pimpin lol
AAleaderNik is offline
AAleaderNik
Member
Join Date: Dec 2005
Old 04-03-2006 , 01:37  
Reply With Quote #4

ok i tryed to add the ct model from the amx_adminmodel plugin but it didnt work it wont download when i go to get on server but t model still works

Code:
#include <amxmodx>
#include <cstrike>
#include <amxmisc>

public plugin_init()
{
	register_plugin("Model basis","1.0","AANik")
	register_event("ResetHUD","resetModel","b")
	return PLUGIN_CONTINUE
}

public plugin_precache() {
	precache_model("models/player/arctic/arctic.mdl")
	precache_model("models/player/gign/gign.mdl")
	
	return PLUGIN_CONTINUE
}

public resetModel(id, level, cid) {
	if (get_user_flags(id) & ADMIN_RCON) {
		new CsTeams:userTeam = cs_get_user_team(id)
		if (userTeam == CS_TEAM_T) {
			cs_set_user_model(id, "arctic")
		}
		else if (userTeam == CS_TEAM_CT) {
			cs_set_user_model(id, "gign")
		}
		else {
			cs_reset_user_model(id)
		}
	}
	
	return PLUGIN_CONTINUE
}
any suggestions?
AAleaderNik is offline
AAleaderNik
Member
Join Date: Dec 2005
Old 04-04-2006 , 10:35  
Reply With Quote #5

none??
AAleaderNik is offline
[ --<-@ ] Black Rose
ANNIHILATED
Join Date: Sep 2005
Location: Stockholm, Sweden.
Old 04-04-2006 , 11:05  
Reply With Quote #6

arctic?
[ --<-@ ] Black Rose is offline
AAleaderNik
Member
Join Date: Dec 2005
Old 04-04-2006 , 18:42  
Reply With Quote #7

the ct model doesnt work but the arctic one does i dont know why ct model wont work

v3x maybe a little bit more help lol
AAleaderNik is offline
Reply


Thread Tools
Display Modes

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 16:30.


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