Jump to content

Aesus

Members
  • Posts

    4
  • Joined

  • Last visited

Aesus's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I don't know if these would be useful to anyone else, but I wrote these for a function I wrote to get IRC access lists for the channels I use. Well, when i say "wrote", they are actually just edited versions of the functions in the IRC UDF. ;=============================================================================== ; ; Description: Identifies you on an IRC server with the the password, requires a registered nick ; Parameter(s): $irc - Socket Identifer from _IRCConnect () ; $u_password - password associated with the registrered nick ; Requirement(s): TCPStartup () to be run ; Return Value(s): On Success - 1 ; On Failure - -1 = Server disconnected. ; Author(s): Aesus1 ; Note(s): English only ; ;=============================================================================== Func _IRC_Ident($irc, $u_password) TCPSend($irc, "privmsg nickserv identify " & $u_password & @LF) If @error Then MsgBox(1, "IRC.au3", "Server has disconnected.") Return -1 EndIf Return 1 EndFunc;==>_IRC_Ident ;=============================================================================== ; ; Description: Sends the GHOST command for the given nick ; Parameter(s): $irc - Socket Identifer from _IRCConnect () ; $nick - Nick you choose to use (must be a registered nick) ; $u_password - password associated with the registrered nick ; Requirement(s): TCPStartup () to be run ; Return Value(s): On Success - 1 ; On Failure - -1 = Server disconnected. ; Author(s): Aesus1 ; Note(s): English only ; ;=============================================================================== Func _IRC_Ghost_Command($irc, $nick, $u_password) TCPSend($irc, "privmsg nickserv ghosts " & $nick & " " & $u_password & @LF) If @error Then MsgBox(1, "IRC.au3", "Server has disconnected.") Return -1 EndIf Return 1 EndFunc;==>_IRC_Ghost_Command
  2. I noticed the AutoIt3Wrapper.au3 file has the line "#RequireAdmin", but in the AutoIt3Wrapper_Gui.au3 file its commented out. I commented it out in the AutoIt3Wrapper.au3 file and compiled that and replaced the original and it seems to be working fine now. Also, it appears the config files i was looking for end up in the user's Vista equivalent of the documents and settings directory. BTW, I'm using the full version of ScITE (the separate download, not the lite version packaged with the AutoIt download).
  3. Its funny because I've been using it for about 3 months on Vista x64 without any issues beyond the "#RequireAdmin" for IE related functions. I'm wondering if one of the recent Windows Updates killed the output pane or if it was something else. Does anyone know where the settings are stored. I know when i completely remove the program and then reinstall it, the same files that i was working on show up in the tabbed view on the top, so I'm wondering if the settings are being removed or not with program removal. I really don't want to submit a bug report until i know for sure its a bug and not a stupid user problem, I'm sure the dev's have enough of those to sift through without adding more. Thank you
  4. Somehow I can no longer get any kind of output in the output box of ScITE without running it as admin. (Running Vista X64). I've tried uninstalling everything AutoIt related while deleting any lingering files or registry entries i could find and reinstalling . I've never had a problem running the editor before, so I'm not really sure where to even begin to look for help. I'm just hoping someone has an idea how to fix this.
×
×
  • Create New...