How to Fill int in a Poke

OvO

CipherSpeak Developer
Jan 23, 2018
34
11
46
Hello guys i need help,
the problem i dnot know how to fill a int in a poke message here is my function

Int NAME;
anyID myID;
ts3functions.getclientid(serverconectionhandlerID,&myID, NULL);
ts3functions.requestclientpoke(serverconnectionhandlerID,myID,"Hello (NAME)",NULL);

I hope someone can help me

Best regards :)
 

Kieran

Tag me
Contributor
Jan 1, 2016
459
286
122
ts3functions.requestclientpoke(serverconnectionhandlerID,myID,"Hello " + NAME,NULL);
Maybe that?

Also, int is only a number. So you're basically saying "Hello 5" OwO
 
Last edited:

OvO

CipherSpeak Developer
Jan 23, 2018
34
11
46
what kind of variable function do I need? for text
 
Top