Raised This Month: $ Target: $400
 0% 

Noobie at scripting..


Post New Thread Reply   
 
Thread Tools Display Modes
Shaitan
BANNED
Join Date: Oct 2005
Location: Over there
Old 01-08-2006 , 01:16  
Reply With Quote #21

Alright, i've been gone for a while, now i started working on it.. It compiles with a thousand errors...

I dont know, i just edited some things in Awp Glow Plugin.. Check it out
Attached Files
File Type: sma Get Plugin or Get Source (amx_glow.sma - 112 views - 986 Bytes)
Shaitan is offline
Send a message via AIM to Shaitan
Jordan
Veteran Member
Join Date: Aug 2005
Old 01-08-2006 , 11:52  
Reply With Quote #22

I didn't see what was wrong with it but... ignore this i guess.
Jordan is offline
Hawk552
AMX Mod X Moderator
Join Date: Aug 2005
Old 01-08-2006 , 12:07  
Reply With Quote #23

wow, just stop posting satanwoj

Code:
#include <amxmodx> #include <fun> #include <cstrike> #define PLUGIN "Team Glow" #define VERSION "1.0" #define AUTHOR "Shaitan" // Description: This plugin makes all the CTs glow blue, and all the the Ts glow RED. // This is because sometimes in the dark, you cant tell if its your team // and you dont want to TK..  It will be very noticable and easy for the other team // to spot you though // // Usage: amx_glow <1|0>    1 = Enable, 0 = Disable // //Fun module required public plugin_init() {     register_plugin(PLUGIN, VERSION, AUTHOR)     register_concmd("amx_glow","sv_glow",ADMIN_SLAY, "<1|0>")     register_cvar("sv_glow", "1")         register_event("ResetHUD","sv_glow","be"); } public sv_glow(id) {     if ((get_cvar_float("sv_glow") == 0))         return PLUGIN_CONTINUE             new arg[2];     read_argv(1,arg,1);         if(arg[0] == '1')     {         switch(get_user_team(id))         {             case 1:  set_user_rendering(id, kRenderFxGlowShell, 255, 100, 100, kRenderNormal, 255)             case 2:  set_user_rendering(id, kRenderFxGlowShell, 100, 100, 255, kRenderNormal, 255)         }     }     else if(arg[0] == '0')     {         set_user_rendering(id, kRenderFxGlowShell, 0, 0, 0, kRenderNormal, 255)     }         return PLUGIN_CONTINUE }
__________________
Hawk552 is offline
Send a message via AIM to Hawk552
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 00:31.


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