This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
zombie343
/
MultiSend
forked from
Plugins/MultiSend
Watch
1
Star
0
Fork
0
Code
Pull Requests
0
Releases
0
Activity
Browse Source
1.01 - Commands will now be read by plugins if shorthand is loaded. If not, they will not be. This is necessary to ensure [] commands will resolve correctly.
master
Lolwutt
3 years ago
parent
6fccf8f81c
commit
57d05d2d87
3 changed files
with
9 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
BIN
release/plugins/MultiSend.dll
+8
-1
src/MultiSend/IO.cpp
+1
-1
src/MultiSend/Main.cpp
BIN
release/plugins/MultiSend.dll
View File
+ 8
- 1
src/MultiSend/IO.cpp
View File
@ -16,7 +16,14 @@ bool MultiSend::ReadCommand()
{
m_AshitaCore
-
>
GetChatManager
(
)
-
>
Writef
(
"
Sending command: %s
"
,
text
)
;
}
m_AshitaCore
-
>
GetChatManager
(
)
-
>
QueueCommand
(
text
,
0
)
;
if
(
m_AshitaCore
-
>
GetPluginManager
(
)
-
>
GetPlugin
(
"
Shorthand
"
)
)
{
m_AshitaCore
-
>
GetChatManager
(
)
-
>
QueueCommand
(
text
,
-
1
)
;
}
else
{
m_AshitaCore
-
>
GetChatManager
(
)
-
>
QueueCommand
(
text
,
0
)
;
}
delete
text
;
}
}
+ 1
- 1
src/MultiSend/Main.cpp
View File
@ -116,7 +116,7 @@ __declspec(dllexport) void __stdcall CreatePluginInfo(plugininfo_t* lpBuffer)
strcpy_s
(
g_PluginInfo
-
>
Author
,
sizeof
(
g_PluginInfo
-
>
Author
)
,
"
Thorny
"
)
;
g_PluginInfo
-
>
InterfaceVersion
=
ASHITA_INTERFACE_VERSION
;
g_PluginInfo
-
>
PluginVersion
=
1.0
0
f
;
g_PluginInfo
-
>
PluginVersion
=
1.0
1
f
;
g_PluginInfo
-
>
Priority
=
0
;
}
Write
Preview
Loading…
Cancel
Save