mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-28 07:32:00 -04:00
[Server] Implement native CreateTimer & CreateTimerEx
This commit is contained in:
parent
9ab58b6708
commit
c58c26f6c0
@ -13,14 +13,28 @@ using namespace mwmp;
|
||||
|
||||
int ScriptFunctions::CreateTimer(ScriptFunc callback, int msec) noexcept
|
||||
{
|
||||
return -1;
|
||||
return mwmp::TimerAPI::CreateTimer(callback, msec, "", vector<boost::any>());
|
||||
}
|
||||
|
||||
int ScriptFunctions::CreateTimerEx(ScriptFunc callback, int msec, const char *types, ...) noexcept
|
||||
{
|
||||
try
|
||||
{
|
||||
vector<boost::any> params;
|
||||
va_list args;
|
||||
va_start(args, types);
|
||||
GetArguments(params, args, types);
|
||||
va_end(args);
|
||||
|
||||
return mwmp::TimerAPI::CreateTimer(callback, msec, types, params);
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void ScriptFunctions::StartTimer(int timerId) noexcept
|
||||
{
|
||||
TimerAPI::StartTimer(timerId);
|
||||
|
Loading…
x
Reference in New Issue
Block a user