Making editors for cricket games

I would probably like to learn this but it is too hard maybe I'll buy a book for this
 
I'm struggling to understand the concept of the Multiple Abilities Changer, what it is for and why you are doing what you are doing. However, read embi's first two tutorials and have a basic idea of variables now as well as some of the other terms. Had a go at the text editor as well, and was able to complete that one:



Cheers for the tutorial embi ;)
 
Multiple Abilities Changer came about as a result of a request from Tutsi to help the AI patchers. Basically meant that he could reduce player speeds etc for every player rather than having to do them all individually.
The point of the tutorial is to show how vb.net knowledge can help you make something (vaguely) useful rather than scorecards or text editors.
 
Multiple Abilities Changer came about as a result of a request from Tutsi to help the AI patchers. Basically meant that he could reduce player speeds etc for every player rather than having to do them all individually.
The point of the tutorial is to show how vb.net knowledge can help you make something (vaguely) useful rather than scorecards or text editors.

Ah right understood, will have a better crack at it later.
 
Had another go at it, I got it working, though I am still stuck as to why I am writing the code I am. It seems I still don't understand variables enough and other things. Will have another read-up about them.
 
rabeta, not boasting lol, but this post would give you some basic instructions on why you are using filestream and events etc. in a code. Short but should help.

http://www.planetcricket.org/forums/showpost.php?p=732206&postcount=245

Due to extreme shortage of time, i am unable to complete my text editor tutorial, so sorry guys :) Maybe some day i do that :)

What? Nah! you are joking. Well evryone knows you are;)

Is anyone interested in a tutorial? (Most probably tournament editor one)
Dont you think it would be tooo complicated to post here ? I've studied that code and probably you'll have to stay onlikne 48 hours a day to clear people's hundreds of doubts :p Start in easy steps, and then go on to the advance skills :)
 
Last edited:
Dont you think it would be tooo complicated to post here ? I've studied that code and probably you'll have to stay onlikne 48 hours a day to clear people's hundreds of doubts :p Start in easy steps, and then go on to the advance skills :)

Good point. I'll see if I can make something much easier. But I don't think its too complicated to post here. Wasn't the code easy to understand?
 
Had another go at it, I got it working, though I am still stuck as to why I am writing the code I am. It seems I still don't understand variables enough and other things. Will have another read-up about them.

Do the calculator tutorial. It looks quite complex but it's actually very satisfying coding.
 
Need Help VB.2005 Express Edition

I cannot set ToolTip on any control.

Take a look:
Error-1.jpg


Error-2.jpg


What have I done wrong in this ?

And can anyone tell me code for changing font in a application Rich Text box only not the Font of the text on the buttons.
 
Not quite sure what you're trying to do but you've got undefined parameters for both lines.

ToolTip1.Show("hello", Me) rather than ToolTip1.Show("hello") as it needs a window (or a control in the second one).

Type this instead to fix the errors:

Code:
ToolTip1.Show("hello", Me)
ToolTip1.SetToolTip(Button1, "hi")
 
Good point. I'll see if I can make something much easier. But I don't think its too complicated to post here. Wasn't the code easy to understand?
It was easy to understand for me, but i think it would really be problematic to post it here. I would say use those concepts and make something similar, then with the power of those concepts, start the whole project.
 
I think I have just completed the multiple abilities changer properly. Can't test it though as I haven't good cricket 2005 installed.

Little satisfaction with it though, as I was basically just copying out the text written without understanding it. I found the step from the cricket scorecard to this very large and due to this didn't comprehend the code I was writing. I suppose I will just go and do a bit more work and read some more tutorials on other sites, because I want to understand it otherwise there is no point. Thanks for it anyway Colin ;)
 
I think I have just completed the multiple abilities changer properly. Can't test it though as I haven't good cricket 2005 installed.

Little satisfaction with it though, as I was basically just copying out the text written without understanding it. I found the step from the cricket scorecard to this very large and due to this didn't comprehend the code I was writing. I suppose I will just go and do a bit more work and read some more tutorials on other sites, because I want to understand it otherwise there is no point. Thanks for it anyway Colin ;)

The idea of the MAC was to show how we could go from something useless i.e. a scorecard to something more useful. The only way to really understand what you are doing is to play around with the code though.
I probably wouldn't recommend you try the lineup displayer as it has more filestream stuff but the calculator one is just sheer logic and doesn't involve reading hex from files...
 

Users who are viewing this thread

Top