I have just started to program and im using Visual basics since i have seen it on YouTube, and i have a error with the integer, wont work but all the vids i have seen do work so i am really confused. When i clicked help it said this "Change the target type to one that can handle the constant." like in one of the photos. If anyone can help me I would really appreciate it, i will give you credits in my trainer for helping me. atm my address is &H1445851E8 but i think i need to change the &H to something but i dont know what to change it to. The address is for prestige, im trying to make a prestige and camo hack together.
Messed up on title :/, big fail. Clicked auto save and was a save from long time ago, really sorry. If any admins can change it to "Programming Help Please" or something like that.
Originally Posted by Happy12345
I have just started to program and im using Visual basics since i have seen it on YouTube, and i have a error with the integer, wont work but all the vids i have seen do work so i am really confused. When i clicked help it said this "Change the target type to one that can handle the constant." like in one of the photos. If anyone can help me I would really appreciate it, i will give you credits in my trainer for helping me. atm my address is &H1445851E8 but i think i need to change the &H to something but i dont know what to change it to. The address is for prestige, im trying to make a prestige and camo hack together.
Originally Posted by Happy12345
Do you have the memory module that uses "WriteInteger" ??
PS Why is "IW6MP..... exe" there?? That could be causing the problem as well, Since to my knowing WriteInteger uses 2 values ( 1Address , 2Value)
Try :
Code:
WriteInteger ( Address, Amount )
Originally Posted by SammyDoge1
Do you have the memory module that uses "WriteInteger" ??
PS Why is "IW6MP..... exe" there?? That could be causing the problem as well, Since to my knowing WriteInteger uses 2 values ( 1Address , 2Value)
Try :
Code:
WriteInteger ( Address, Amount )
Thanks but it didnt help :/, needs process name.
Originally Posted by Happy12345
Thanks but it didnt help :/, needs process name.
You're using a memory class which is made for 32-bit processes, while you need a memory class which works with 64-bit processes, too.
Use master's memory module.
And by the way, Ghosts' process isn't iw6mp_ship, it's iw6mp64_ship.
Originally Posted by Happy12345
Thanks but it didnt help :/, needs process name.
This:
Originally Posted by Lovroman
You're using a memory class which is made for 32-bit processes, while you need a memory class which works with 64-bit processes, too.
Use master's memory module.
And by the way, Ghosts' process isn't iw6mp_ship, it's iw6mp64_ship.
Then you should end up with something like this:
Code:
If Process_Handle("iw6mp64_ship") Then
WriteInteger(Address, Value)
End If
Not sure if 100% correct i converted it from C# to VB
Originally Posted by SammyDoge1
This:
Then you should end up with something like this:
Code:
If Process_Handle("iw6mp64_ship") Then
WriteInteger(Address, Value)
End If
Not sure if 100% correct i converted it from C# to VB
Thx i think it works but there are 4 errors all the same thing "statement is not valid in namespace" what does that mean???? If you want me to post picture just say but since your like a amazing trainer creator i think you know what it means.
Originally Posted by Happy12345
Thx i think it works but there are 4 errors all the same thing "statement is not valid in namespace" what does that mean???? If you want me to post picture just say but since your like a amazing trainer creator i think you know what it means.
What does give the errors? What lines??
There are more photos but same line so... yeah. Hope that helps really want to make a trainer for mpgh.
There are more photos but same line so... yeah. Hope that helps really want to make a trainer for mpgh.
A part of your code is outside the class, so it doesn't work.
Thanks, that helped alot but now i have the problem in the beggining :/,
bandicam 2014-05-17 16-23-52-954.jpg
Originally Posted by Happy12345
Thanks, that helped alot but now i have the problem in the beggining :/,
It seems that your project doesn't contain any of the memory classes that you're trying to use.
Make/add a new module, paste master's class in the module, and then:
Originally Posted by Lovroman
It seems that your project doesn't contain any of the memory classes that you're trying to use.
Make/add a new module, paste master's class in the module, and then:
Thx for the help since im a newbie at this but how do i create/add masters module????
Originally Posted by Happy12345
Thx for the help since im a newbie at this but how do i create/add masters module????