What's the activator for this? Farmer Vs Hunter S3 v1.3

General talk about editing, cheating, and deprotecting maps.

Moderator: Cheaters

Post Reply
Vorderyx
Member
Posts: 99
Joined: August 5th, 2009, 1:39 am

What's the activator for this? Farmer Vs Hunter S3 v1.3

Post by Vorderyx »

I thought it was szxysszzxxyyszxy but it didn't work
You do not have the required permissions to view the files attached to this post.
User avatar
devoltz
Forum Staff
Posts: 3289
Joined: March 23rd, 2016, 8:06 pm

Re: What's the activator for this? Farmer Vs Hunter S3 v1.3

Post by devoltz »

It's quite simple, notice two things
First one:

Code: Select all

constant string V="szxysszzxxyyszxy"
On that line of code, we get a constant string, so it never changes
Second one:

Code: Select all

set n[0]=CreateTrigger()
set n[1]=CreateTrigger()
set n[2]=CreateTrigger()
set n[3]=CreateTrigger()
loop
exitwhen q>11
call TriggerRegisterPlayerEvent(n[0],Player(q),EVENT_PLAYER_ARROW_LEFT_DOWN)
call TriggerRegisterPlayerEvent(n[1],Player(q),EVENT_PLAYER_ARROW_RIGHT_DOWN)
call TriggerRegisterPlayerEvent(n[2],Player(q),EVENT_PLAYER_ARROW_UP_DOWN)
call TriggerRegisterPlayerEvent(n[3],Player(q),EVENT_PLAYER_ARROW_DOWN_DOWN)
set q=q+1
endloop
call TriggerAddAction(n[0],function de)
call TriggerAddAction(n[1],function fe)
call TriggerAddAction(n[2],function Fe)
call TriggerAddAction(n[3],function ge)
call TriggerAddCondition(a,Condition(function ce))
call TriggerAddAction(a,function Ce)
This is from the function main part, basicly binds a key that is on "de" "fe" "Fe" "ge" functions to a arrow key.

Code: Select all

de = left
fe = right
Fe = up
ge = down
If you look on these functions, each one of them is a character of "szxysszzxxyyszxy"
So basicly,

Code: Select all

de = z
fe = y
Fe = s
ge = x
Now u just need build the arrow sequence

Code: Select all

szxysszzxxyyszxy

UP LEFT DOWN RIGHT UP UP LEFT LEFT DOWN DOWN RIGHT RIGHT UP LEFT DOWN RIGHT
The activator is that arrow key sequence above, just make it fast to work since it is a big command.
Vorderyx
Member
Posts: 99
Joined: August 5th, 2009, 1:39 am

Re: What's the activator for this? Farmer Vs Hunter S3 v1.3

Post by Vorderyx »

thanks!
Post Reply