I need help >.< menu

Shout-Out

User Tag List

Results 1 to 11 of 11
  1. #1
    Rkade777's Avatar Member
    Reputation
    22
    Join Date
    Aug 2008
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    I need help >.<

    I am very new to programming, and so far only know very basic things.
    I need ideas of things to make for a beginner.
    I already made a web browser, but I don't have any ideas about what to try and make

    I need help &gt;.&lt;
  2. #2
    EmiloZ's Avatar Flying Piggy Back
    CoreCoins Purchaser
    Reputation
    538
    Join Date
    Jun 2007
    Posts
    1,393
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Made an toolbox, with Browser, Calender, Music Player, Video Player, Realmlist Changer, E-Mailer ect

    - EmiloZ
    Why fill up a signature?

  3. #3
    Rkade777's Avatar Member
    Reputation
    22
    Join Date
    Aug 2008
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, I just made a .BAT Editor that I'm going to release and get feedback on

  4. #4
    Gamer's Avatar Active Member
    Reputation
    239
    Join Date
    Jan 2007
    Posts
    198
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Try something that reads from text files and parses them.
    Realmlist switchers are a good place to start aswell.(The my.computer.filesystem) has everything you need.
    If you want some rep while you're at it, you can make one of those fake gamecard duplicators with an email function built in.

  5. #5
    Rkade777's Avatar Member
    Reputation
    22
    Join Date
    Aug 2008
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gamer View Post
    Try something that reads from text files and parses them.
    Realmlist switchers are a good place to start aswell.(The my.computer.filesystem) has everything you need.
    If you want some rep while you're at it, you can make one of those fake gamecard duplicators with an email function built in.
    I've made one of those email function things before, and every called me a "phisher/scammer/hacker" because it required your email address -.-

  6. #6
    Rkade777's Avatar Member
    Reputation
    22
    Join Date
    Aug 2008
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well here's my program that I made.
    http://www.mmowned.com/forums/genera...ml#post1248399

  7. #7
    Gamer's Avatar Active Member
    Reputation
    239
    Join Date
    Jan 2007
    Posts
    198
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rkade777 View Post
    I've made one of those email function things before, and every called me a "phisher/scammer/hacker" because it required your email address -.-
    Mmm, people can be pretty nooby around here but if you release the source it shouldn't matter, and you still get your reps. if you are doing it to learn then accept people will ninja your codes

    PS: I shall post on your thread.

  8. #8
    Rkade777's Avatar Member
    Reputation
    22
    Join Date
    Aug 2008
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So anyways, I've made my BAT editor, and now I'm trying to make a gamecard generator.

    I can't get the random function to work though... big problem right? Defeats the whole purpose of it hahah.
    Code:
    Public Class Form1
        Private Sub Gen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Gen.Click
            Dim rnd As Random()
            Disp.Text = dim number rnd(1, 10)
        End Sub
    End Class
    That's what I have, and Disp.Text = dim number rnd (1, 10) has an error, dim is underlined with blue and is expecting an expression.

    Help please :O

  9. #9
    arigity's Avatar Banned
    Reputation
    49
    Join Date
    Dec 2007
    Posts
    548
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    random() produces a random number between 0 and 1

    labelx.text = rnd() might produce 0.24 (just a guess :P )
    labelx.text = ( rnd() * 10 ) might produce 2.4
    labelx.text = (int( rnd() * 10 )) might produce 2 (rounded up/down)

    i'm not sure if these code examples will work but they should point you in the right direction.


    note that you will get the same random number each time you run the app (for debugging purposes) to fix this add randomize() on form1_load which uses the system clock to create a random starting point.


    as for your other problem i don't think you can declare a variable when setting a property

    this.text = dim blabla as string = "no" // wrong.

    dim blabla as string = "yes"
    this.text = blabla // right.

    or more simply
    this.text = "yes" // also right.




  10. #10
    Rkade777's Avatar Member
    Reputation
    22
    Join Date
    Aug 2008
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Alright, I made a realmlist changer, please tell me what you think
    http://www.mmowned.com/forums/bots-p...ml#post1250137

  11. #11
    Rkade777's Avatar Member
    Reputation
    22
    Join Date
    Aug 2008
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by EmiloZ View Post
    Made an toolbox, with Browser, Calender, Music Player, Video Player, Realmlist Changer, E-Mailer ect

    - EmiloZ
    Also, I might try and make something like this, not sure how I would do the music/video player though, I could def. make a browser, calender, and emailer, and in my post above, is my link to my Realmlist changer

Similar Threads

  1. need help with shammy talents
    By jason in forum World of Warcraft General
    Replies: 5
    Last Post: 07-19-2006, 02:02 AM
  2. Need Help with WoW Glider
    By paypal in forum World of Warcraft General
    Replies: 2
    Last Post: 07-07-2006, 02:08 AM
  3. I need help
    By ff9pro in forum World of Warcraft General
    Replies: 4
    Last Post: 07-05-2006, 08:43 PM
  4. Need help
    By zamp in forum World of Warcraft General
    Replies: 1
    Last Post: 06-24-2006, 10:54 PM
  5. Need Help
    By Slumlorde in forum World of Warcraft General
    Replies: 4
    Last Post: 06-23-2006, 08:20 AM
All times are GMT -5. The time now is 11:55 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search