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

amx_speed by Petey B


Post New Thread Reply   
 
Thread Tools Display Modes
Plugin Info:     Modification:   ALL        Category:         
#eclipse
Junior Member
Join Date: Nov 2004
Old 02-28-2005 , 16:12   amx_speed by Petey B
Reply With Quote #1

I ported this from amx to use on my server this can change a users speed, It's slightly glitched so that it goes back to normal after you change weapons well at least in ts. Please do not ask me to fix this I only ported this and thought it might to useful or fun.
Code:
/*
Fast Movement, v0.2
By Petey B thanks to KRoT@L
Usage: amx_speed <nick, part nick, @TEAM or *ALL> <Speed>
*/
Attached Files
File Type: sma Get Plugin or Get Source (amx_speed.sma - 3783 views - 2.1 KB)
#eclipse is offline
Petey B
Member
Join Date: Feb 2005
Old 02-28-2005 , 21:22   Thnx
Reply With Quote #2

thnx for porting this plugin i did write but i still think u shood have asked me first jks .

This plugin allows you to change the speed of players using
amx_speed <nik, part nik, @TEAM, *all> <speed>

the default speed is 250 if ur wonderin why you can move during the freezetime and u whant it fixed just ask me and il post it!

thnx

----------------

I still think amx is better!
Petey B is offline
Send a message via MSN to Petey B
#eclipse
Junior Member
Join Date: Nov 2004
Old 02-28-2005 , 22:08  
Reply With Quote #3

Sorry i'll keep that in mind next time
#eclipse is offline
Petey B
Member
Join Date: Feb 2005
Old 03-01-2005 , 17:07  
Reply With Quote #4

no its fine i dont mind but there are some people *cough* asskicr *cough* who get extremely mad!

jks asskicr i luv ur plugins
Petey B is offline
Send a message via MSN to Petey B
#eclipse
Junior Member
Join Date: Nov 2004
Old 03-01-2005 , 22:35  
Reply With Quote #5

Oh he hasn't said anything to me yet...
#eclipse is offline
Petey B
Member
Join Date: Feb 2005
Old 03-02-2005 , 21:33  
Reply With Quote #6

lmao

lol jks
Petey B is offline
Send a message via MSN to Petey B
nightscreem
Veteran Member
Join Date: Jul 2004
Location: Belgium
Old 03-21-2005 , 07:42  
Reply With Quote #7

thx for porting this
__________________
- Bye bye!
nightscreem is offline
GHW_Chronic
SourceMod Donor
Join Date: Sep 2004
Location: Texas
Old 04-04-2005 , 20:34  
Reply With Quote #8

The Speed plugin I made allows you to bind a key to +speed2 to turn it on and when u release your finger it will turn off. It also includes an "amx_speed" command so as to set speed on other people. Check it out, it is this plugin and much more

not trying to trash this plugin or nothing

http://forums.alliedmods.net/showthread.php?t=6946
GHW_Chronic is offline
Send a message via AIM to GHW_Chronic
twistedeuphoria
Veteran Member
Join Date: Jul 2004
Old 04-05-2005 , 12:56  
Reply With Quote #9

@#eclipse: Please, please indent!

@GHW_Chronic: Figure out how to keep a players speed past when they respawn or switch weapons.

Right now we have at least 3 speed plugins. I suggest finding a feature that sets your respective plugins apart. In this matter it seems Chronic has the advantage with the +button, however as I said above he needs to update to work around weapon switches and respawns.

A little healthy competition
__________________
twistedeuphoria is offline
ZiP*
Senior Member
Join Date: Jul 2004
Old 04-05-2005 , 16:17  
Reply With Quote #10

He hasn't done it yet...

Code:
/*  Fast Movement, v0.2  By Petey B thanks to KRoT@L  Usage: amx_speed <nick, part nick, @TEAM or *ALL> <Speed>  */  #include <amxmodx>  #include <fun>  #include <amxmisc>  new bool:speedy[33]  new Float:speedvar[33]  public client_connect(id)  {     speedy[id] = false     speedvar[id] = 250.0  }  public admin_speed(id,level,cid){     if (!cmd_access(id,level,cid,2)){         console_print(id, "you arn't good enough to use this command")         return PLUGIN_HANDLED     }     server_cmd("sv_maxspeed 99999999")     new i     new arg[32], arg2[32]     read_argv(1, arg, 31)     read_argv(2, arg2, 31)     if(arg[0] == '@')     {         new users[32], inum         get_players(users, inum, "ae", arg[1])         if(inum == 0)         {             console_print(id, "No users in such team Idiot")             return PLUGIN_HANDLED         }         for(i = 0; i < inum; ++i)         {             speedvar[users[i]] = float(str_to_num(arg2))             set_user_maxspeed(users[i], speedvar[users[i]])             speedy[users[i]] = true             client_print(0, print_chat, "AMX: the %s's speed is %s", arg, arg2)         }     }     else if(arg[0] == '*')     {         new users[32], inum         get_players(users, inum)         if(inum == 0)         {             console_print(id, "No users in such team idiot")             return PLUGIN_HANDLED         }         for(i = 0; i < inum; ++i)         {             speedvar[users[i]] = float(str_to_num(arg2))             set_user_maxspeed(users[i], speedvar[users[i]])             speedy[users[i]] = true             client_print(0, print_chat, "AMX: Everybody's speed is %s", arg2)         }     }     else     {         new player = cmd_target(id, arg, 0)         if(!player){             console_print(id, "you can't spell!!")             return PLUGIN_HANDLED         }         speedvar[player] = float(str_to_num(arg2))         set_user_maxspeed(player, speedvar[player])         speedy[player] = true         new name[32]         get_user_name(player, name, 31)         client_print(0, print_chat, "AMX: %s's speed is %s", name , arg2)     }     return PLUGIN_HANDLED  }  public switch_weapon(id)  {     if(speedy[id])     {         set_user_maxspeed(id, speedvar[id])     }     return PLUGIN_CONTINUE  }  public plugin_init() {     register_plugin("Fast Movement","0.2","Petey B")     register_concmd("amx_speed","admin_speed",ADMIN_KICK, "<nick, part of nick, @team, * all> <speed>")     register_event("CurWeapon", "switch_weapon", "be", "1=1")  }
ZiP* is offline
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 06:03.


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