wc3edit.net

United Warcraft 3 map hacking!
It is currently April 18th, 2024, 10:48 pm

All times are UTC




Post new topic Reply to topic  [ 6 posts ] 
Author Message
 Post subject: help about bind key
PostPosted: July 31st, 2013, 1:08 pm 
Offline
Member

Joined: September 10th, 2012, 6:39 am
Posts: 75
i want know if possible to make bindkey like hit esc key or arrow key for this

globals
trigger gg_trg_elidhan=null


function main
call InitTrig_elidhan1()

endglobals
function Trig_elidhan_Actions1 takes nothing returns nothing
call AdjustPlayerStateBJ( 50, GetTriggerPlayer(), PLAYER_STATE_RESOURCE_GOLD )
endfunction
function InitTrig_elidhan1 takes nothing returns nothing
set gg_trg_elidhan = CreateTrigger( )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(12), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(11), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(10), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(9), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(8), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(7), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(6), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(5), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(4), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(3), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(2), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(1), "-cl ", true )
call TriggerRegisterPlayerChatEvent( gg_trg_elidhan, Player(0), "-cl ", true )
call TriggerAddAction( gg_trg_elidhan, function Trig_elidhan_Actions1 )
endfunction

_________________
Like in fb -> Dota Cheated Maps

Sorry for my bad english because english is not my native language. :D


Top
 Profile  
 
 Post subject: Re: help about bind key
PostPosted: August 1st, 2013, 12:08 pm 
Offline
Super Moderator
User avatar

Joined: February 24th, 2009, 1:31 pm
Posts: 3815
Location: JEW LAND
Simply replace the playerchatevent with an arrow key event.
You can find the event in the jasscraft native list or in world editor make it in gui and convert it to jass to find the event.

_________________
Image
Spoiler:
(02:24:09)
Code:
ChatBot: FatherSpace logs into the Chat.
(02:24:28) Lanaya: Gtfo ken.
(02:24:33) ChatBot: FatherSpace logs out of the Chat.
(02:24:40) Lanaya: Thought so. bitch.
(02:24:44) ChatBot: FatherSpace logs into the Chat.
(02:24:48) FatherSpace: Can I come back yet?
(02:24:51) Lanaya: What'd i say earlier.
(02:24:51) Lanaya: No.
(02:24:58) FatherSpace: Let's try this...
(02:25:01) ChatBot: Lanaya has been logged out (Kicked).
Code:

(14:33:51) 2Pac: Do you know what'S so funny?
(14:34:01) Lanaya: No, please show me.
(14:34:07) 2Pac: This.
(14:34:09) ChatBot: Lanaya has been logged out (Kicked).
(14:34:10) 2Pac:


Code:
(14:35:59) haxorico: No one will belive me if I say "I got this song from 2pac on MSN" lolz ^^
(14:36:02) Lanaya: lolz.
(14:36:16) 2Pac: I AIN'T DEAD FFS.
(14:36:26) 2Pac: I'm a living legend, y'now.
(14:37:17) haxorico: why is 2Pac a legend?
(14:37:28) Lanaya: He's the worse rapper evar.

Code:
(15:42:51) Lanaya: can i suck , . . .

Code:
(13:55:21) ChatBot: 2Pac rolls 1d100 and gets 1.
(13:55:21) ChatBot: haxorico rolls 1d2 and gets 2.
(13:55:27) haxorico: owned?

Code:
GeorgeMots: xplain what happens in SP. Why cant you save?
dast.-:i need play with 2 players

Code:
(21:53:08) (673237): plzplzplz, im sorry about before.
(21:53:26) FatherSpace: I'm sorry you were born.
(21:53:31) ChatBot: (673237) has been logged out (Kicked).


Code:
(10:08:02) Bartimaeus: you do know run I youtube channel for my favorite music, right?


Top
 Profile  
 
 Post subject: Re: help about bind key
PostPosted: August 1st, 2013, 10:21 pm 
Offline
Member

Joined: September 10th, 2012, 6:39 am
Posts: 75
haxorico wrote:
Simply replace the playerchatevent with an arrow key event.
You can find the event in the jasscraft native list or in world editor make it in gui and convert it to jass to find the event.



like this?

call TriggerRegisterPlayerChatEvent
( gg_trg_elidhan, Player(12), EVENT_PLAYER_ARROW_DOWN_DOWN, true )

_________________
Like in fb -> Dota Cheated Maps

Sorry for my bad english because english is not my native language. :D


Top
 Profile  
 
 Post subject: Re: help about bind key
PostPosted: August 2nd, 2013, 3:25 am 
Offline
Grammar King
User avatar

Joined: June 22nd, 2008, 10:11 pm
Posts: 2410
Location: Mostly USEast
Title: Worst human for 4eva
Remove the "Chat" and the boolean and it should be fine.

call TriggerRegisterPlayerEvent ( gg_trg_elidhan, Player(12), EVENT_PLAYER_ARROW_DOWN_DOWN )

_________________
Quote:
(20:53:52) Bartimaeus: Thank you, Jen.
(20:53:56) Bartimaeus: Truly, you are wise.


Quote:
(23:44:12) Bartimaeus: I was in pubic school until middle school...


Learn how to extract and read RAW Codes here!

Need help? Click here and ask your question!


Top
 Profile  
 
 Post subject: Re: help about bind key
PostPosted: August 2nd, 2013, 5:02 am 
Offline
Member

Joined: September 10th, 2012, 6:39 am
Posts: 75
UndeadxAssassin wrote:
Remove the "Chat" and the boolean and it should be fine.

call TriggerRegisterPlayerEvent ( gg_trg_elidhan, Player(12), EVENT_PLAYER_ARROW_DOWN_DOWN )


ok tnx

_________________
Like in fb -> Dota Cheated Maps

Sorry for my bad english because english is not my native language. :D


Top
 Profile  
 
 Post subject: Re: help about bind key
PostPosted: August 2nd, 2013, 5:10 am 
Offline
Member

Joined: September 10th, 2012, 6:39 am
Posts: 75
one more question i use arrow key how to change it to esc, hold, stop, patrol key?

Edit: i already solve esc key

_________________
Like in fb -> Dota Cheated Maps

Sorry for my bad english because english is not my native language. :D


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 6 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 18 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group

phpBB SEO


Privacy Policy Statement
Impressum (German)