How to Fill int in a Poke

OvO

CipherSpeak Developer
Joined
Jan 23, 2018
Messages
34
Reaction score
11
Points
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
Joined
Jan 1, 2016
Messages
459
Reaction score
286
Points
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
Joined
Jan 23, 2018
Messages
34
Reaction score
11
Points
46
what kind of variable function do I need? for text
 
Top