Maybe stupid protection

General discussion of Warcraft 3. Threads may may be posted here if they don't fit into the other sections.

Moderator: Cheaters

User avatar
Kai
Junior Member
Posts: 33
Joined: January 18th, 2009, 2:29 pm
Title: Kookibuzation
Location: Kooki Corporation

Maybe stupid protection

Post by Kai »

First Idea :
Maybe it's stupid but it's work
Image
with JASS :
Spoiler:

Code: Select all

function Trig_Anti_Conditions takes nothing returns boolean
    if ( not ( GetEventPlayerChatString() != "-open house" ) ) then
        return false
    endif
    return true
endfunction

function Trig_Anti_Actions takes nothing returns nothing
    call DoNothing()
endfunction

//===========================================================================
function InitTrig_Anti takes nothing returns nothing
    set gg_trg_Anti = CreateTrigger()
    call TriggerRegisterPlayerChatEvent(gg_trg_Anti , Player(0) , "-" , false)
    call TriggerAddCondition(gg_trg_Anti , Condition(function Trig_Anti_Conditions))
    call TriggerAddAction(gg_trg_Anti , function Trig_Anti_Actions)
endfunction

//===========================================================================
function InitCustomTriggers takes nothing returns nothing
    call InitTrig_Anti()
endfunction
By Kai ;D
Second Idea :
It's a BanList ,with funny effect
3' Idea :
You see (and all player) all begin message to "-"
4' Idea :
A anti-leave but it's so simple ...
You do not have the required permissions to view the files attached to this post.
Last edited by Kai on February 28th, 2009, 9:19 pm, edited 1 time in total.
Image
User avatar
JJ2197
Legendary Genius
Posts: 1311
Joined: August 8th, 2007, 8:10 am
Title: Legendary Genius²
Location: St. George Utah

Re: Maybe stupid protection

Post by JJ2197 »

How is this protection? You can still cheat...
Now if it had something like defeat in the actions
then it would be consider protection... but since
it's just Do nothing all it will do is nothing when the
trigger is executed, assuming chat string isn't equal
to -open house, it doesn't effect the cheat triggers...
Computer Specs:
Motherboard: GA-990FXA-UD3
CPU: FX-8350 @ 4.0GHz
PSU: Corsair CX500
RAM: G.Skill Ripjaws X 8GB @ 1866
GPU: Radeon HD 4870 1GB
HDD: OCZ Vertex series 30GB SSD
Case: Antec 900
Monitor: Toshiba 32"
OS: Windows 7 Ultimate
User avatar
Kai
Junior Member
Posts: 33
Joined: January 18th, 2009, 2:29 pm
Title: Kookibuzation
Location: Kooki Corporation

Re: Maybe stupid protection

Post by Kai »

If you say a "-" on your message you lose , it's dangerous .
And in single player , you can disable defeat , cinematic mode it's maybe best ^^'
I need a little test and upgrad ^^
Image
User avatar
Kai
Junior Member
Posts: 33
Joined: January 18th, 2009, 2:29 pm
Title: Kookibuzation
Location: Kooki Corporation

Re: Maybe stupid protection

Post by Kai »

I upgraded
It's simple , and it's look working
You do not have the required permissions to view the files attached to this post.
Image
User avatar
Dekar
Forum Drunk
Posts: 2895
Joined: January 17th, 2007, 4:22 pm
Has thanked: 1 time
Been thanked: 1 time

Re: Maybe stupid protection

Post by Dekar »

There are tons of ways like that to prevent n00bs from cheating.
And since this is easy to implement and there aren't many posts in here anyway, I think it's nice you posted it.
If I'd protect my map I would split values up, and calculate them into other values so
that when someone alters them the map fucks up. And not only custom defeat, other stuff like
kill hero and wipe items :D And I would have alternative ways to transport the game data in the map
which are chosen by random. So cheats work unreliable until you cheat all of them.
If you add enough your map won't be cheated for at least a few month - most likely longer.
Don't pm me with Warcraft questions, this is a forum so just make a post!
In the world of thinking we are all immigrants. -Robert Nozick
User avatar
Ozzapoo
The Flying Cow!
Posts: 2196
Joined: November 2nd, 2007, 10:34 pm
Location: Melbourne

Re: Maybe stupid protection

Post by Ozzapoo »

Dekar wrote:There are tons of ways like that to prevent n00bs from cheating.
And since this is easy to implement and there aren't many posts in here anyway, I think it's nice you posted it.
If I'd protect my map I would split values up, and calculate them into other values so
that when someone alters them the map fucks up. And not only custom defeat, other stuff like
kill hero and wipe items :D And I would have alternative ways to transport the game data in the map
which are chosen by random. So cheats work unreliable until you cheat all of them.
If you add enough your map won't be cheated for at least a few month - most likely longer.
That's the world of Dekar!
Visit Ozzapoo.net, my blog and the home of AutoCP and Cheatpack Detector!
AutoCP3 now available for free!
User avatar
Dekar
Forum Drunk
Posts: 2895
Joined: January 17th, 2007, 4:22 pm
Has thanked: 1 time
Been thanked: 1 time

Re: Maybe stupid protection

Post by Dekar »

Actually I am glad I have no map to protect XD
Don't pm me with Warcraft questions, this is a forum so just make a post!
In the world of thinking we are all immigrants. -Robert Nozick
User avatar
Kai
Junior Member
Posts: 33
Joined: January 18th, 2009, 2:29 pm
Title: Kookibuzation
Location: Kooki Corporation

Re: Maybe stupid protection

Post by Kai »

Furious Creator wrote:OMG A NOOB HACK MY MAP AND WHAT ?HE IS JUST BLOCKED ?!? JUST 15 SEC ?!IT'S NOT ENOUGH ! WE MUST PUNISH THEY !
If you are like him ,you enjoy this upgrad ;)


(I have just make a second effect )
Event : there is a "-" in the message
Action :-Cinematique mode for 9999 sec
-Turn on second effect

Event : Every 0.01 sec
Action : Player press escape / cancel

He can't leave ;) (excepte if he use administrator right) (CTRL + ALT + Suppr)
Timid Creator wrote:Euh ... Oh ... May be it's abusive ? ^^'
Yeah maybe , if you want you can delete cinematique and Player press escape , just her press every 0.01sec the key T (I am French it's the hotkey for Tenir the position)
Image
User avatar
Senethior459
Forum Staff
Posts: 2618
Joined: June 2nd, 2007, 6:53 pm
Title: I Just Lost the Game

Re: Maybe stupid protection

Post by Senethior459 »

Fai's cheatpack pwns this protection...
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
User avatar
Kai
Junior Member
Posts: 33
Joined: January 18th, 2009, 2:29 pm
Title: Kookibuzation
Location: Kooki Corporation

Re: Maybe stupid protection

Post by Kai »

Senethior459 wrote:Fai's cheatpack pwns this protection...
euh ... How ? ^^'
Image