Raised This Month: $51 Target: $400
 12% 

personal movespeed and personal gravity


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
kpcritter
New Member
Join Date: May 2005
Old 02-12-2006 , 00:51   personal movespeed and personal gravity
Reply With Quote #1

could someone make a stable personal gravity and personal move speed?
kpcritter is offline
GHW_Chronic
SourceMod Donor
Join Date: Sep 2004
Location: Texas
Old 02-12-2006 , 00:56  
Reply With Quote #2

Look in my sig and go to my plugins and you will find both.
GHW_Chronic is offline
Send a message via AIM to GHW_Chronic
Jordan
Veteran Member
Join Date: Aug 2005
Old 02-12-2006 , 00:58  
Reply With Quote #3

Code:
/* Plugin generated by AMXX-Studio */ #include <amxmodx> #include <amxmisc> #include <fun> #include <cstrike> new arg1[32] new arg2[10] new Float:g_fGravity[33]; public plugin_init() {     register_plugin("Personal Gravity", "1.1", "SatanWoJ")     register_concmd("amx_pgrav", "gravity", ADMIN_KICK, "<nick> <gravity>")     register_logevent("hook_roundstart", 2, "0=World triggered", "1=Round_Start")} public client_connect(id) {     g_fGravity[id] = 0.0 } public gravity(id, level, cid) {     if(!cmd_access(id, level, cid, 2))         return PLUGIN_HANDLED         read_argv(1, arg1, 31)     read_argv(2, arg2, 9)     new target = cmd_target(id, arg1, 15)     new Float:amount = str_to_float(arg2)/800     set_user_gravity(target, amount)     g_fGravity[id] = amount     return PLUGIN_CONTINUE } public hook_roundstart(id) {     if(g_fGravity[id] > 0.0)     {         set_user_gravity(id, g_fGravity[id]);     } }

This should do it - I think there is a working one in UAIO as well though.

Edit: CHRONIC WHY ARE YOU SO FAST
Jordan is offline
GHW_Chronic
SourceMod Donor
Join Date: Sep 2004
Location: Texas
Old 02-12-2006 , 01:05  
Reply With Quote #4

because I have no life other than AMXX

check the other topic.
GHW_Chronic is offline
Send a message via AIM to GHW_Chronic
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 05:05.


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