Roblox jumping Jacks Script, HELP!

Ask gaming related questions (AHK v1.1 and older)
swifterkey
Posts: 1
Joined: 20 Sep 2018, 20:15

Roblox jumping Jacks Script, HELP!

20 Sep 2018, 20:21

Im trying to make a script that will make my character jump then wait 3 seconds and say "One." then wait 1 second then Jump again and wait 3 seconds and then say "Two." I'd like this to continue till one hundred. You can simplify it so I will just copy and paste it and enter all the numbers in manually.
User avatar
Onimuru
Posts: 107
Joined: 08 Sep 2018, 18:35
Contact:

Re: Roblox jumping Jacks Script, HELP!

21 Sep 2018, 01:11

What is your jump key key? What do you mean by say, type in chat?

Code: Select all

#SingleInstance Force
SendMode Input

Number_Array := ["One", "Two", "Three", "Four"]	;Add your numbers here.

Exit

$Space::	;Change this hotkey probably.
	If !Toggle_Variable
		Global i := 0
	SetTimer, j_L, % ((Toggle_Variable := !Toggle_Variable) ? "On" : "Off")	;Space to toggle on/off
	Return

j_L:
	Send {Space}
	Sleep 500
	Send {Enter}
	Sleep 250
	t := Number_Array[(i += 1)]
	Send %t%
	Sleep 250
	Send {Enter}
	If (i >= 100)
		SetTimer, j_L, Off	;Break at 100.
	Return
You could have achieved this very easily with google search and some trial and error. 0/10 for effort. This is out of the help file for instance:

Code: Select all

array := ["one", "two", "three"]

; Iterate from 1 to the end of the array:
Loop % array.Length()
    MsgBox % array[A_Index]
Havasiz
Posts: 3
Joined: 02 Jul 2020, 17:34

Re: Roblox jumping Jacks Script, HELP!

02 Jul 2020, 17:40

I need that script too, let me specifiy it for you.

There is a game called Roblox. You need to press "/" to type in the game chatbox. And hit spacebar to jump and enter to send the message. The game has a message cooldown. So can you please make a script like that? I really don't know AHK.
Havasiz
Posts: 3
Joined: 02 Jul 2020, 17:34

Re: Roblox jumping Jacks Script, HELP!

02 Jul 2020, 17:41

Onimuru wrote:
21 Sep 2018, 01:11
What is your jump key key? What do you mean by say, type in chat?

Code: Select all

#SingleInstance Force
SendMode Input

Number_Array := ["One", "Two", "Three", "Four"]	;Add your numbers here.

Exit

$Space::	;Change this hotkey probably.
	If !Toggle_Variable
		Global i := 0
	SetTimer, j_L, % ((Toggle_Variable := !Toggle_Variable) ? "On" : "Off")	;Space to toggle on/off
	Return

j_L:
	Send {Space}
	Sleep 500
	Send {Enter}
	Sleep 250
	t := Number_Array[(i += 1)]
	Send %t%
	Sleep 250
	Send {Enter}
	If (i >= 100)
		SetTimer, j_L, Off	;Break at 100.
	Return
You could have achieved this very easily with google search and some trial and error. 0/10 for effort. This is out of the help file for instance:

Code: Select all

array := ["one", "two", "three"]

; Iterate from 1 to the end of the array:
Loop % array.Length()
    MsgBox % array[A_Index]
I need that script too, let me specifiy it for you.

There is a game called Roblox. You need to press "/" to type in the game chatbox. And hit spacebar to jump and enter to send the message. The game has a message cooldown. So can you please make a script like that? I really don't know AHK.
Someone1111
Posts: 1
Joined: 14 Jul 2020, 00:30

Re: Roblox jumping Jacks Script, HELP!

14 Jul 2020, 00:34

Can you make it so that the command for chat is "/", because that is the key to activate chat in game, so it would have to go, "/One.", "/Two.", "/Three.", ETC.

Also make sure that there is a period on the end and a capital at the front,

Thank you.
kenkenlue
Posts: 8
Joined: 12 Jul 2020, 02:04

Re: Roblox jumping Jacks Script, HELP!

14 Jul 2020, 01:30

Onimuru just literally gave you the answer in the first code block.

At the part
Number_Array := ["One", "Two", "Three", "Four"] ;Add your numbers here.

You can just put "/One" and continue adding your numbers all the way to 100. Its tedious but work for it.

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 47 guests