Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 60
  1. #16
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Quote Originally Posted by omanel View Post
    What's a boolean, what's it used to?
    Yeah, I suck lol
    it's a data type which contains or true or false. can be used for "whatever" you feel like using it for
    Last edited by 'Bruno; 07-07-2010 at 03:31 AM.
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  2. The Following User Says Thank You to 'Bruno For This Useful Post:

    omanel (07-07-2010)

  3. #17
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by Brinuz View Post
    it's a data type which contains or true or false. can be used for "whatever" you feel like using it for
    Beat me to it

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  4. #18
    omanel's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Portugal
    Posts
    93
    Reputation
    10
    Thanks
    4
    My Mood
    Inspired
    Quote Originally Posted by Brinuz View Post
    it's a data type which contains or true or false. can be used for "whatever" you feel like using it for
    Ty,
    but how can I set a boolean to true?

  5. #19
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by omanel View Post
    Ty,
    but how can I set a boolean to true?
    dim b as boolean

    b = true 'LOL <- comment1!



  6. The Following User Says Thank You to Blubb1337 For This Useful Post:

    omanel (07-07-2010)

  7. #20
    omanel's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Portugal
    Posts
    93
    Reputation
    10
    Thanks
    4
    My Mood
    Inspired
    Quote Originally Posted by Blubb1337 View Post
    dim b as boolean

    b = true 'LOL <- comment1!

    Thanks lol

  8. #21
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Nice tutorial man!
    -Rest in peace leechers-

    Your PM box is 100% full.

  9. #22
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Thanks for the Tut Im learn little by little

  10. #23
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    With

    Code:
    lblStatus.text = "Something"
    lblstatus.BackColor = Color.Yellow 
    lblstatus.Location = New Point(50, 100)
    lblstatus.visible = true
    Code:
    With lblstatus
    .text = "Something"
    .backcolor = color.yellow
    .location = new point(50, 100)
    .visibile = true
    end with
    Add to my first post please.

    Can you sticky this ?



  11. #24
    Samueldo's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Meh
    Posts
    1,023
    Reputation
    29
    Thanks
    348
    My Mood
    Inspired
    Quote Originally Posted by Blubb1337 View Post
    Indeed, on my trainer I'm always like wut se fack what is this button again. So I click on form1...go on the specific tab click the button...owwww that one...

    My File Sorter I did is very clean I guess =D
    For smaller projects (eg spammers and tappers) it's not that much of a problem, but it's still easier to rename. For giant projects, if you don't rename them your head WILL explode.
    Quote Originally Posted by Grim View Post
    glad to be an inspiration
    Minions rule. /endof

    InjectPlz Refresh - download v1.0 now!

  12. #25
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Agree. I renamed every control and commented a lot on my current project. It helps you a lot. It is important, especially in bigger projects, to keep your code clean.

    And if you are done, recheck your code and check whether you can do improvements to your code.



  13. #26
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Decent Tut (just seen it) I am pretty sure the was one of these here.

    But looks good.

    Samu - This topic was dead for a week, watch it.

    I won't close it, but be careful not to res old topics.

  14. #27
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Updated Post 1

  15. The Following User Says Thank You to NextGen1 For This Useful Post:

    Blubb1337 (08-19-2010)

  16. #28
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Structure

    Code:
    Dim firstPos as point
    Dim firstDir as string 
    Dim firstFrame as integer
    
    Dim secondPos as point 
    Dim secondDir as string 
    Dim secondFrame as integer
    
    Dim thirdPos as point
    Dim thirdDir as string
    Dim thirdFrame as integer
    [php]Structure meh
    Dim Pos As Point
    Dim Dir As String
    Dim Frame As Integer
    end structure

    dim first as meh
    dim second as meh
    dim third as meh[/php]

    [php]first.dir = "up"[/php]
    Last edited by NextGen1; 08-19-2010 at 11:46 PM.



  17. #29
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by Blubb1337 View Post
    Structure

    Code:
    Dim firstPos as point
    Dim firstDir as string 
    Dim firstFrame as integer
    
    Dim secondPos as point 
    Dim secondDir as string 
    Dim secondFrame as integer
    
    Dim thirdPos as point
    Dim thirdDir as string
    Dim thirdFrame as integer
    [php]Structure meh
    Dim Pos As Point
    Dim Dir As String
    Dim Frame As Integer
    end structure

    dim first as meh
    dim second as meh
    dim third as meh[/php][php]first.dir = "up"[/php]
    Cool, I am using them for quite a long time now. One of my favorites from OOP.
    Last edited by Hassan; 08-19-2010 at 11:49 PM.

  18. #30
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Stickied and Updated post one. Instead of posting them in here, gather all your updates together with bbcode, and pm me them.

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Improve your reaction
    By Ferris Bueller in forum CrossFire Tutorials
    Replies: 13
    Last Post: 06-07-2011, 09:16 AM
  2. [Tutorial] HOW TO IMPROVE YOUR COMPUTERS FPS AND IN GENRAL!
    By Death217 in forum CrossFire Tutorials
    Replies: 8
    Last Post: 03-27-2011, 05:19 PM
  3. [Request] Mechanical share your code
    By deadman027 in forum CrossFire PH Discussions
    Replies: 13
    Last Post: 10-11-2010, 06:13 AM
  4. How Can I Improve This Code ?
    By kelechi96 in forum Combat Arms EU Hack Coding/Source Code
    Replies: 8
    Last Post: 08-02-2010, 10:51 AM
  5. Do you take drugs to improve your gameplay?
    By CAPTAIN OBVIOUS in forum General
    Replies: 23
    Last Post: 04-11-2008, 09:48 PM