AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   makeing player skins (https://forums.alliedmods.net/showthread.php?t=41014)

superfly19092 07-07-2006 16:22

makeing player skins
 
can someone please teach me how to make my own player skins? or just how to edit them because i have a skin i like and i want to know how i can put like admin on his back or something like that. but i really want to know how to make my own.


please help


thanks =)

Rolnaaba 07-07-2006 16:32

Re: makeing player skins
 
to make everyone on a server have a certain weapon model:
Code:
#include <amxmodx> #include <amxmisc> #include <engine> public plugin_precache()   {      precache_model("models/v_mymodel.mdl")  precache_model("models/p_mymodel.mdl") } public plugin_init() {  register_event("CurWeapon","event_curweapon","b") } public event_curweapon(id) {  new ammo, clip  if(get_user_weapon(id,ammo,clip) == CSW_AK47)  {   entity_set_string(id,EV_SZ_viewmodel,"models/v_mymodel.mdl")   entity_set_string(id,EV_SZ_weaponmodel,"models/p_mymodel.mdl")  } }

that will change the model of what you see when your holding the gun and when someone looks at you holding the gun.
just change CSW_AK47 to CSW_whatever gun the model is for.
and change mymodel (everywhere it is lsited) into the model name.

This will only work for counter-strike

Rolnaaba 07-07-2006 16:36

Re: makeing player skins
 
wait I = A moron, you want to make your own models, I dunno how to help you there :)
This probably isnt the place to ask about that, go to http://fpsbanana.com

superfly19092 07-07-2006 16:49

Re: makeing player skins
 
lol ok well thanks for the help and the weapon model thing i was kinda woundering bout wepaon models to thanks


All times are GMT -4. The time now is 08:01.

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