This site is a testing version, but all data is shared with the live forum.


Raised This Month: $ Target: $400
 0% 

Cheat! without REALLY cheating . . .


Post New Thread Reply   
 
Thread Tools Display Modes
Plugin Info:     Modification:   ALL        Category:   Fun Stuff       
shephard
Junior Member
Join Date: Jun 2006
Old 09-30-2006 , 16:56   Cheat! without REALLY cheating . . .
Reply With Quote #1

"dont post your first plugin because it probably sucks" - yeah i know sorry . . .

this plugin will allow client to type in chat any of three command . . .
/noclip_on /godmode_on /invisibility_on - and they will be granted

BUT, as soon as they fire thier weapon all cheat(s) will be disabled

say /godmode_on - an hud message display "<name> is cheating !" and
client_print "[AMXx] - <name>, godmode is enabled - to disable fire a weapon"

ive only tested in op4 but see no reason why it wouldnt work for all mod

Copy of 3cheatv2.sma:
Upload of file failed.

Code:
#include <amxmodx> #include <amxmisc> #include <engine> #include <fun> #define PLUGIN "3cheatv2" #define VERSION "2.0" #define AUTHOR "$HEPHARD" public plugin_init() {     register_plugin("3cheatv2","2.0","$HEPHARD")     register_clcmd("say /noclip_on","noclip")     register_clcmd("say /godmode_on","godmode")     register_clcmd("say /invisibility_on","invisible") } public client_PreThink(id){     if (get_user_button(id) == IN_ATTACK)     set_user_noclip(id,0)&set_user_godmode(id,0)&&set_entity_visibility(id,1)     if (get_user_button(id) == IN_ATTACK2)     set_user_noclip(id,0)&set_user_godmode(id,0)&&set_entity_visibility(id,1) } public noclip(id){     new name[32]     get_user_name(id,name,31)     set_hudmessage(255,0,0,-1.0,0.25,1,0.0,2.0,1.0,1.0,0)     show_hudmessage(0,"%s is cheating !",name)     set_user_noclip(id,1)     client_print(0,print_chat,"[AMXx] - %s, noclip is enabled, to disable - fire a weapon",name) } public godmode(id){     new name[32]     get_user_name(id,name,31)     set_hudmessage(0,255,0,-1.0,0.25,1,0.0,2.0,1.0,1.0,0)     show_hudmessage(0,"%s is cheating !",name)     set_user_godmode(id,1)     client_print(0,print_chat,"[AMXx] - %s, godmode is enabled, to disable - fire a weapon",name) } public invisible(id){     new name[32]     get_user_name(id,name,31)     set_hudmessage(0,0,255,-1.0,0.25,1,0.0,2.0,1.0,1.0,0)     show_hudmessage(0,"%s is cheating !",name)     set_entity_visibility(id,0)     client_print(0,print_chat,"[AMXx] - %s, invisibility is enabled, to disable - fire a weapon",name)  }
ill post .sma as soon as i can upload file again . . . .

Last edited by shephard; 10-02-2006 at 00:56.
shephard is offline
Bend3R
Veteran Member
Join Date: Oct 2004
Location: Sweden (Stockholm)
Old 09-30-2006 , 17:03   Re: Cheat! without REALLY cheating . . .
Reply With Quote #2

Old.
Bend3R is offline
ThomasNguyen
Senior Member
Join Date: May 2006
Old 09-30-2006 , 17:13   Re: Cheat! without REALLY cheating . . .
Reply With Quote #3

I actaully like this plugin. even though i think its gonna get unapproved because its not original. good job
__________________
ThomasNguyen is offline
shephard
Junior Member
Join Date: Jun 2006
Old 10-01-2006 , 01:24   Re: Cheat! without REALLY cheating . . .
Reply With Quote #4

aw damnit . . . . lol . . . well i did search a little first but found no cheat plugins that allow for any client to use cheats, or use of say command, or 3 in 1 cheat plugin . . .

how unoriginal is this plugin? . . . i did write it form scratch . . .

instead of trashing this one could it at least be put in unapproved/old plugins?? i often look through there for interesting plugins

thank you ThomasNguyen for kind words
and thank you whoever gave me karma for my first plugin !!!!

Last edited by shephard; 10-01-2006 at 01:29.
shephard is offline
XxAvalanchexX
Veteran Member
Join Date: Oct 2004
Location: abort73.com
Old 10-01-2006 , 01:38   Re: Cheat! without REALLY cheating . . .
Reply With Quote #5

Code:
set_user_noclip(id,0)&set_user_godmode(id,0)&&set_entity_visibility(id,1)
This probably works as intended, but it's kind of bad coding practice.
__________________
No longer around. Thanks your support, everyone! As always:
THIS ONES FOR YOU
3000 PTS
XxAvalanchexX is offline
g3x
Member
Join Date: Sep 2006
Old 10-01-2006 , 01:58   Re: Cheat! without REALLY cheating . . .
Reply With Quote #6

Well, I seem to like it I will +karma you for effort and couragenous not many people who script put out there plugins they ask someone else to do it gj
g3x is offline
Send a message via AIM to g3x Send a message via MSN to g3x
shephard
Junior Member
Join Date: Jun 2006
Old 10-01-2006 , 02:03   Re: Cheat! without REALLY cheating . . .
Reply With Quote #7

yes it does work as intended but . . . there is a more efficient way ??
see i really am very new to this . . .

and thank you XxAvalanchexX this is the kind of feedback i would like , i know now that this wont be approved, but if people could inspect the code and then say " oh well you are doing "this" wrong, or; there is an easier/ more efficient way . . . that would be very helpfull
shephard is offline
shephard
Junior Member
Join Date: Jun 2006
Old 10-01-2006 , 02:05   Re: Cheat! without REALLY cheating . . .
Reply With Quote #8

g3x, thank you so much + karma for you

the plugin does work as stated above
shephard is offline
Silencer123
Veteran Member
Join Date: Jul 2006
Old 10-01-2006 , 05:34   Re: Cheat! without REALLY cheating . . .
Reply With Quote #9

Nice, but quite old (Chat Protection is similar to this).
Think of something more original in the Future!
Nevertheless some Motivation for you! (+Karma)
;)
__________________
EAT YOUR VEGGIES
Silencer123 is offline
g3x
Member
Join Date: Sep 2006
Old 10-02-2006 , 00:45   Re: Cheat! without REALLY cheating . . .
Reply With Quote #10

Yeah, I know this plugin is really awesome =] now you cheaters can cheat in servers with this
g3x is offline
Send a message via AIM to g3x Send a message via MSN to g3x
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 03:21.


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