Jump to content

NewNinja

Members
  • Posts

    19
  • Joined

  • Last visited

NewNinja's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. There are mutiple pdf and mp3 files which I need to download but you can only download one at a time so I need to automate it. Is there a way to download the whole site? or do I need to get all of the individual addresses of the files and then download the files and if so can someone start me of?
  2. sorry for the late reply, It is just going to be a series of text boxes with two buttons which will change the outcome. The user must choose the right options to get the successful outcome. After typing in your name you are only going to be clicking buttons. Could you explain what you mean by filling the $cheatcodestring variable? sorry :s
  3. Here is all of my code so far $run = True $Main = GUICreate("Adventure Game", 250, 100) $character_setup = GUICtrlCreateInput("Replace this text with you adventurer's name", 10, 10, 230, 20) $cheatcodestring = "" $start = GUICtrlCreateButton("Start the Adventure!", 10, 40, 230, 30) GUISetState(@SW_SHOW, $main) while $run = True Switch GUIGetMsg() Case - 3 Exit EndSwitch ; Then the code for recognizing the cheatcode goes here if $cheatcodestring = "super" Then EndIf WEnd
  4. Well I want it that people will not know that you can cheat on it, I think that is what some of the fun is. I just need something which will be able to read what the user types in then it anaylses the whole string to see if it has the cheat code in. If you think someone is going to use the code as a key logger you can just message it to me?
  5. I am trying to make a text based adventure game, but I want to add cheat codes to it, so you just type in the code and it gives you a bonus or something. That is why I needed to know how to do it. I will just say the problem again. I wanted it to concatenate x amount of any letter you type to a string whilst the program is running. Sorry if it bothers you for me to remake the topic :/
  6. Do you mean the inbuilt one in the editor?
  7. Lol, sorry I did not explain it well enough.I meant, I wanted it to concatenate x amount of any letter you type to a string whilst the program is running and Melba I did not understand what you suggested :/
  8. Hi, just a quick question - how can I set a string to anything that is typed? I would like to know how to concatenate it as well.
  9. I'm not sure what packet means but I have heard it been used before when doing something similar to this, the way I explained it is the best I could :/ If you have played minecraft you would kind of know what I am talking about. By packet I thought it meant something which imitates a key being pressed whilst not on the program. If you just send a key press to the certain program it will not work at it is at pause menu. But because the program is still running behind it you can somehow send a packet through the pause menu.
  10. John, you have jumped to the wrong conclusion. I do not intend to make a program to automate things on games. I think you thought this because I mentioned minecraft, I mentioned minecraft because it was the only thing which I could compare it to which most people will understand.
  11. Hey guys I got A question, How could i send a packet to a program whilst I am on another window? I would want the packet to press a key. Whilst you are on another window, the program is on a pause menu. But the game still runs but you can't do anything manually, it is like minecraft if you have heard of it. I have seen programs which is able to do this. I am not sure if packet is the right word but I guess you guys will know what is needed to be done.
  12. thanks 871, I will check those out
  13. Hey guys, I was just wondering if there is anyway in which I could create a program which could recognize certain icons? I would like to know how I could do it as well. Thanks.
  14. How about: $count = 0 while 1 Sleep(1000) send("a") $count += 1 if $count = 10 Then send("d") count = 0 EndIf WEnd Here is the psuedo code: counting up starts at 0 forever wait 1 second press a counting goes up by 1 when my counting reaches 10 press d go back to 0
×
×
  • Create New...