elliesy
  • elliesy
  • 51% (Neutral)
  • Major Topic Starter
8 years ago
Here is the Plan VGEN
Programming Language : Microsoft Visual Basic 6.0
.
.

VGEN MODDER 1.0 CODE GENERATOR

: add New Team : GLA Type.
: Enter New Name: Ex . Philippines

:Add Faction Building:
:Add Faction Unit :

PLease Help Generals ... to complete my dream TOOLS :D


.
.

Happy modding Generals ..:D
Sponsor
acidbrain
8 years ago
You could do the same as i do...
Spend all your free time on researching and learning how to code, you can keep asking others for apps but that is not going to work because it is very hard for others to realize the ideas that are in YOUR head...
I know it is hard to master coding but that is the challenge...
After a few years when you finally start to code in a way that is neat and ordered and when you are finally able to setup a program from the top of your head you feel good about yourself because you never gave up...Never give up and always keep trying, im still struggling with a lot of things but that is the fuel for my determination to solve the problems...
You need a certain state of mind to become a coder and the number one hallmark of a coder/modder is that he/she is to stubborn to ask others for solutions or apps because he/she wants to solve/create his own problems/apps...
Oh and btw, start to learn Java, Java is closer to C# and C++ so it is easier later on to master multiple programming languages...

Greetz
Panem et kirkinses
Gameanater
8 years ago

You could do the same as i do...
Spend all your free time on researching and learning how to code, you can keep asking others for apps but that is not going to work because it is very hard for others to realize the ideas that are in YOUR head...
I know it is hard to master coding but that is the challenge...
After a few years when you finally start to code in a way that is neat and ordered and when you are finally able to setup a program from the top of your head you feel good about yourself because you never gave up...Never give up and always keep trying, im still struggling with a lot of things but that is the fuel for my determination to solve the problems...
You need a certain state of mind to become a coder and the number one hallmark of a coder/modder is that he/she is to stubborn to ask others for solutions or apps because he/she wants to solve/create his own problems/apps...
Oh and btw, start to learn Java, Java is closer to C# and C++ so it is easier later on to master multiple programming languages...

Greetz

Originally Posted by: acidbrain 




I remember I tried to learn programming in Python a couple times. Unfortunately I just did not have the patience for it.
Maybe someday though, I'll try it again.

Any old friends still on here can add me on discord @jcdenton2187. I'm far more likely to respond there.
elliesy
  • elliesy
  • 51% (Neutral)
  • Major Topic Starter
8 years ago
UserPostedImage

..
..
.
I need to develop my own .... :D
.
.
I love Programming and modding .... someday i become
a legend here in this forum like Sir Acidbrain and Mr Hymn ..
.
.
Happy modding Generals....:D our motto " NEVER GIVE UP :by > NARUTO "
mr_hymn_
8 years ago
Dang, my programming skills are rusty...
elliesy
  • elliesy
  • 51% (Neutral)
  • Major Topic Starter
8 years ago

Dang, my programming skills are rusty...

Originally Posted by: Mr_Hymn_ 


.
.
Me too Sir Hymn but i need that i need to recap my lesson again and again
.
.
Sir What PL(Programming Language) Have you prepared for this kind of project ...
.
.
:D
mr_hymn_
8 years ago
Idk since it's really rusty. Might be a time to clean it up from youtube.
elliesy
  • elliesy
  • 51% (Neutral)
  • Major Topic Starter
8 years ago
UserPostedImage



Private Sub mnuExit_Click()
Unload Me
End Sub

------------------------------------------------------------------

Private Sub mnuOpen_Click()
Dim ContentFile As String
On Error GoTo A

Form1.CommonDialog1.ShowOpen
Open Form1.CommonDialog1.FileName For Input As #1
    Do Until EOF(1)
    Input #1, ContentFile
    Form1.Text1 = Form1.Text1 + ContentFile + vbCrLf
Loop
Close #1
A:
End Sub