idea!! note plugin |
Author: |
Message: |
trev
New Member
Posts: 4
36 / / –
Joined: Jul 2004
|
O.P. idea!! note plugin
Is there a note plugin so if you did
code: /note joke
in your chat log it would say
[/code]
[12:07:54] trev : hi
[12:08:11] Joke
[12:09:27] bob : hello
[/code]
if you put a note the other person is unable to see it in the im screen!!
This post was edited on 07-13-2004 at 06:00 PM by trev.
|
|
07-13-2004 05:58 PM |
|
|
Stigmata
Veteran Member
Posts: 3520 Reputation: 45
21 / /
Joined: Jul 2003
|
RE: idea!! note plugin
i like this idea... very good
please patch add it
note this wont be possible with a plugin
This post was edited on 07-13-2004 at 06:09 PM by Stigmata.
|
|
07-13-2004 06:00 PM |
|
|
crank
Full Member
Failed to come back here :(
Posts: 304 Reputation: 17
35 / /
Joined: Mar 2004
Status: Away
|
RE: idea!! note plugin
quote: Originally posted by trev
Is there a note plugin so if you did
I don't think that's possible with a plugin. It has to do with the way plus! saves the logs...
I haven't been active here in ages.
If you're wondering who i am, read my reputations. I used to make plugins, skins and spam the IRC channels here back in the good old days before Windows Live.
|
|
07-13-2004 06:08 PM |
|
|
Millenium_edition
Veteran Member
Posts: 1787 Reputation: 57
Joined: Apr 2003
|
RE: idea!! note plugin
Set your nick to alt+0173 and use / me
|
|
07-13-2004 07:54 PM |
|
|
trev
New Member
Posts: 4
36 / / –
Joined: Jul 2004
|
O.P. RE: idea!! note plugin
yes but they will be able to see it
|
|
07-14-2004 07:23 AM |
|
|
Sk3tch
Veteran Member
We are Samurai, the keyboard cowboys
Posts: 1675 Reputation: 4
38 / / –
Joined: Jul 2003
|
RE: idea!! note plugin
I like this idea... would be useful for a 'keyword' to search for in the logs..
but if its just about the logs.. and you don’t need to actually see the note in the convo.. it could be done easily in a plugin right? Just open the log, assign the note and close..
nice to see a new idea btw
|
|
07-14-2004 08:07 AM |
|
|
Guido
Elite Member
Design is Safety
Posts: 4566 Reputation: 50
37 / /
Joined: Dec 2002
|
RE: idea!! note plugin
I definitely agree with the idea. Great
This post was edited on 07-14-2004 at 02:00 PM by Guido.
|
|
07-14-2004 01:47 PM |
|
|
Wouter
Full Member
Posts: 252 Reputation: 3
39 / / –
Joined: Jul 2003
Status: Away
|
RE: idea!! note plugin
code: Public Function ParseCommand(ByVal sCommand As String, ByVal sCommandArg As String, ByVal oConversationWnd As Object, ByRef sResult As String) As Boolean
If (StrComp(LCase(sCommand), "/xnote", vbTextCompare) = 0) Then
Open getstring(HKEY_CURRENT_USER, "Software\Patchou\MsgPlus2\wouter@reclames.net\Archive\" & email & ".txt", "FileName") For Append As #1
Print #1, "[" & Time & "] " & sCommandArg
Close 1
'Send back an empty string to cancel the message
sResult = ""
ParseCommand = True
Exit Function
End If
'Give other plugins a chance to parse this command
ParseCommand = False
End Function
code: Declare Function RegOpenKey Lib "advapi32.dll" Alias "RegOpenKeyA" (ByVal Hkey As Long, ByVal lpSubKey As String, phkResult As Long) As Long
Declare Function RegQueryValueEx Lib "advapi32.dll" Alias "RegQueryValueExA" (ByVal Hkey As Long, ByVal lpValueName As String, ByVal lpReserved As Long, lpType As Long, lpData As Any, lpcbData As Long) As Long
Public Const HKEY_CLASSES_ROOT = &H80000000
Public Const HKEY_CURRENT_USER = &H80000001
Public Const HKEY_LOCAL_MACHINE = &H80000002
Public Const HKEY_USERS = &H80000003
Public Const HKEY_PERFORMANCE_DATA = &H80000004
Public Const ERROR_SUCCESS = 0&
Public Const REG_SZ = 1
Public Function getstring(Hkey As Long, strPath As String, strValue As String)
Dim keyhand As Long
Dim datatype As Long
Dim lResult As Long
Dim strBuf As String
Dim lDataBufSize As Long
Dim intZeroPos As Integer
r = RegOpenKey(Hkey, strPath, keyhand)
lResult = RegQueryValueEx(keyhand, strValue, 0&, lValueType, ByVal 0&, lDataBufSize)
If lValueType = REG_SZ Then
strBuf = String(lDataBufSize, " ")
lResult = RegQueryValueEx(keyhand, strValue, 0&, 0&, ByVal strBuf, lDataBufSize)
If lResult = ERROR_SUCCESS Then
intZeroPos = InStr(strBuf, Chr$(0))
If intZeroPos > 0 Then
getstring = Left$(strBuf, intZeroPos - 1)
Else
getstring = strBuf
End If
End If
End If
End Function
|
|
07-14-2004 04:51 PM |
|
|
Mike
Elite Member
Meet the Spam Family!
Posts: 2795 Reputation: 48
32 / /
Joined: Mar 2003
Status: Online
|
RE: idea!! note plugin
That wont print it to the convo window.
|
|
07-14-2004 04:54 PM |
|
|
Mnjul
forum super mod
plz wub me
Posts: 5396 Reputation: 58
– / /
Joined: Nov 2002
Status: Away
|
RE: idea!! note plugin
Wouter, I doubt this works perfectly: Plus! doesn't save chat logs on the fly
|
|
07-14-2004 04:55 PM |
|
|
Pages: (2):
« First
[ 1 ]
2
»
Last »
|
|