Jump to content

Lenny

Members
  • Posts

    6
  • Joined

  • Last visited

Lenny's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Good evening! I'm currently scripting an ICQ client, but I don't get the "Add User" function. I use to use the _TocLib UDF, you can find here: http://www.autoitscript.com/forum/index.php?showtopic=42832 You can find following lines in the TOC2 readme: http://terraim.cvs.sourceforge.net/*checko...rc/toc/TOC2.txt toc2_new_buddies <config format*> In TOC2.0, you must add buddies in "config format". See example: {g:test<lf*>b:buddytest:alias1<lf>b:buddytest2:alias2<lf>} If you sent that with the toc2_new_buddies command, you would add the two buddies (buddytest and buddytest2) with aliases alias1 and alias2 into the group "test". Note that if the group doesn't already exist, it will be created. Alternatively, if the usernames didn't have aliases, they would be added as follows: {g:test<lf*>b:buddytest<lf>b:buddytest2<lf>} * <lf> stands for linefeed, '\n'. Don't literally send "<LF>" :) ... so I took it and put it in my script like that: $addbuddy = _TocSendFlap('toc2_new_buddies {g:General'&@CRLF&'b:415**6276'&@CRLF&'}') but that doesn't work. I don't really know what to put as "buddytest". Additionally, I don't know how to get the buddylist and I don't see that function in the readme (http://terraim.cvs.sourceforge.net/*checkout*/terraim/terraim/src/toc/TOC2.txt). I would be soo happy about your help! Thank you in advance, Lenny
  2. Hey! Could someone tell me please, how to get the buddy list? I read http://terraim.cvs.sourceforge.net/*checko...rc/toc/TOC2.txt but I didn't find a solution. Does anyone know that ? Thank you in advance, Lenny
  3. Good evening! My English is not so good, but I will try to explain my Problem I bought a ftp server. Now I want to upload a file on the server, using _Ftp.au3 (latest version) Here's my code: $server = 'svr' $username = 'usr' $pass = 'pwd' $Hand = _FTPOpen('FTPCon','','','',1) ; Connect in Passiv Mode ; @Error: No Error $Ftpc = _FTPConnect($Hand, $server, $username, $pass) ; @Error: No Error _FtpPutFile($Hand, @Desktopdir"\myfile.txt", '/results/textfile.txt') ; @Error: -1 $Ftpc = _FTPClose($Hand) ; @Error: No Error Does anyone know what this Error may cause? Maybe its a general Problem ? Thanks in Advance Take Care Lenny
  4. Hi! So ... I had the same idea and tried to make it like that:
  5. Hey! How can I remove the Gui of this Script? =) (Educational Purposes) Thank you for answering! And: Sorry for my bad english! =P Lenny
×
×
  • Create New...