Jump to content

b14ck

Active Members
  • Posts

    356
  • Joined

  • Last visited

About b14ck

  • Birthday 06/28/1988

Profile Information

  • Location
    California

b14ck's Achievements

Universalist

Universalist (7/7)

0

Reputation

  1. I was curious because I personally like to have a listing of all functions included in the file at the top (not in comments). And thanks LxP, I saw that function in the help but I thought it was only for dynamic arrays, (I saw the add function).
  2. Maybe I'm not being clear... I need to do this to determine how long an array will be. Such as this quick example in Java... char hk[] = {'a', 'b', 'c', 'd'}; System.out.println("Number of elements in array hk: " + hk.length + "."); Or... In C... char *hk = "hello world"; (void)fprintf(stdout, "Amount of elements in array hk: %d\n", sizeof(char) * (strlen(hk) + 1)); This way I can traverse through an array of any length without hard-coding in the size. LxP, thanks, I just read your post after posting mine Just thought of another question actually. I don't see anything in the help file about instantiating arrays upon declaration. ex: Global $array[] = {"element 0", "element 1", "etc"} Any substitute for that? Or do you have to specify each element? ex: Dim $array[3] $array[0] = "el0" $array[1] = "el1" $array[2] = "el2"
  3. It shouldn't be new news... Prototyping functions is common in C and C++ which are the base of this scripting language along with pretty much everything =/ And I have one more question to add to the list, is there a way to get the amount of elements in an array? Not a dynamic array, just a normal array, like: $names[5] ;<--- return 5 $names[6] ;<--- return 6 etc Thanks again.
  4. I haven't been doing any au3 coding in a very very long time. But circumstances have returned to a place which I need to use windows again. I've got a few quick questions about the language: When using loops, can you still use brackets close the circumstance? for ($i = 0 to 50) instead of: for $i = 0 to 50 Also, is there a way to prototype your functions?
  5. This could be done so easily in another language ><
  6. I pretty much only use unix and linux. VIM is my favorite editor, emacs second. Good job.
  7. Thanks, I think I misread your first post. My point was that, instead of bothering to post that you have an aimbot, without giving any advice on how to create on, etc, then it is useless.
  8. The purpose of saying that, then revealing that you are closing the source, is hippocritical. I suggest you edit your old post and replace the contents with something more contributary, such as "EDITED: removed context."
  9. Don't worry about it, I'm sure au3 can produce a decent aim bot, but for maximum potential, you will probably need to go with something different, C, Cpp, something of that nature. Python also has great aim bot possibilities.
  10. Mass Ping sounds fun =) Like the old style DoS.
  11. How do you plan to make an IRC bot with ethereal? It's a network analyzer.
  12. Download xchat. www.xchat.org. They have 3 plugins available (maybe more, been a while since I checked). It accepts perl scripts, (with special perl-xchat commands) and python programming ( my favorite) and eggdrop. I strongly suggest that you do not get caught up with mIRC because it is limited. Besides, if you can incorporate python or perl into a irc bot, then why bother with mIRC scripting? X-Chat is generally used on linux/bsd, but is readily available for windows computers with full support. It is free and a heck of a lot better in my opinion then any other client. If you are looking for socketSending bots, then you can check out www.python.org because it is a great language with tons and tons of modules including EXCELLENT socket server handling. You can write a very functional irc bot in less than 200 lines. If you are looking for premade bots, I suggest checking this link. It is only for xchat-plugin bots though, not socket server bots which send information directly to the server, so you would need xchat to use it. http://scripts.xchat.org/cgi-bin/disp
  13. Guido. What you want to do isn't very hard. Talk to some people on www.cultdeadcow.com about the new project =) DarkSorc is in charge of that project. ASM virii AI creation tools for longhorn, enjoy.
  14. I would rather write something like that in C or asm.
  15. I think he's got the point. Maybe someone should block this topic before three certain members reach 10k posts.
×
×
  • Create New...