AlliedModders

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

Dizzy 09-16-2004 22:28

Models
 
Hey! I need to make a plugin that summons 8 models to change all the peoples skins like the models

for

terror
artic
guerilla
leet
gign
sas
and the other 2 :P

well, Can anyone make a plugin for that so it uses them BUT!

It doesn't overwrite there models so they always look like that

If you could thanks! A TON!

Make it shut off able :P

like

register_cvar("sv_model","1")

Can anyone whipe one up?

All I want is

it to summon 8 models and make it shut off able :~ Hehe

Thanks!
:lol:


If you wanna make it fancy add a vote (DON'T HAVE TO) THANKS A TON GUYS YOU RULE! :wink:
-=Dizzy=-

Dizzy 09-18-2004 11:04

Is Anyone gonna help!?

I started something an here it is...

Code:
#include <amxmodx> #include <cstrike> public plugin_init() {     register_plugin("ModelChanger","1.0","Dizzy")     register_concmd("amx_model","changemodel", ADMIN_RCON," : <id> <model> - Sets user's model") } public changemodel() {     new arg1[32]     new arg2[64]     read_argv(1,arg1,32)     read_argv(2,arg2,64)     cs_set_user_model(arg1,arg2)     return PLUGIN_HANDLED }

Any Ideas?

Help?

Please!?


All times are GMT -4. The time now is 17:28.

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