Fix a problem with Minigame Suite

04/02/2019 18:48 bobisands#1
Hello, I used the Minigame suite 2.0 by Moneypulation but when it’s time to recharge the points with a coupon it opens Enter, writes 0 and sends instead of clicking on slot 0 where is the coupon... I’ve tried to fix it myself and spend so many hours trying to understand the code (it’s opensource [Only registered and activated users can see links. Click Here To Register...]) but I don’t manage to understand, I hope one of you guys can help me solve this

Thank you for reading
04/02/2019 22:41 Nortank#2
Guess it comes from here :
Code:
Func fill_points()
	Local $tmp_toDO = $ctrToDo
	For $i = 0 To 3 Step 1
		If $tmp_toDO > 0 Then
			Send("0")
			Sleep(Random(1400,2800,1))
			Send("{ENTER}")
			Sleep(Random(1400,2800,1))
			$tmp_toDO -= 5
		EndIf
	Next
EndFunc
Why do it click Enter ? Maybe just Send("0") ?
04/03/2019 11:19 ThomasGBL#3
I think it's the wrong 0, it click the one on the right-hand of the keyboard (with all the Numbers) instead of the other 0 (above the letters, on the keyboard)

I really Don't know tbh…

Thank you for helping
04/03/2019 11:46 FI0w#4
Quote:
Originally Posted by Nortank View Post
Guess it comes from here :
Code:
Func fill_points()
	Local $tmp_toDO = $ctrToDo
	For $i = 0 To 3 Step 1
		If $tmp_toDO > 0 Then
			Send("0")
			Sleep(Random(1400,2800,1))
			Send("{ENTER}")
			Sleep(Random(1400,2800,1))
			$tmp_toDO -= 5
		EndIf
	Next
EndFunc
Why do it click Enter ? Maybe just Send("0") ?
Maybe because

"Production-coupons must be on Slot 0 if needed"

and bc it opend a new Window for ask if you really wanna use it?
04/04/2019 09:46 Nortank#5
Oh, yep.
Maybe try clicking 'à' instead of '0' ?

"I think it's the wrong 0, it click the one on the right-hand of the keyboard (with all the Numbers) instead of the other 0 (above the letters, on the keyboard)

I really Don't know tbh… "

According to [Only registered and activated users can see links. Click Here To Register...], we use {NUMPAD0} - {NUMPAD9} to simulate a number from the numeric pad.