How to call variable.

03/02/2022 08:12 Hikari Kuina#1
Hello,

Is there a way to call a variable from neuz to worldserver? I want to do the logic inside of User.cpp

if (MMI_TRACE)
{
block of code to be executed if the condition is true
}

Thank you.
03/02/2022 18:35 Drabur#2
Quote:
Originally Posted by Hikari Kuina View Post
Hello,

Is there a way to call a variable from neuz to worldserver? I want to do the logic inside of User.cpp

if (MMI_TRACE)
{
block of code to be executed if the condition is true
}

Thank you.
You need to send a packet form client to server when pressing MMI_TRACE.
03/05/2022 16:49 Hikari Kuina#3
Quote:
Originally Posted by Drabur View Post
You need to send a packet form client to server when pressing MMI_TRACE.
Thank you!.