[Ayuda] Unos errores.
#1

Hola gente!
Bueno, agregandole cosas a mi chatbot, recibн dos errores.
Les dejo la linea y los errores.
Linea:
pawn Код:
Botname[MAX_PLAYER_NAME] = inputtext;
Errores:
rooT.pwn(544) : error 032: array index out of bounds (variable "Botname")
rooT.pwn(544) : error 006: must be assigned to an array

No se si sera necesario, pero aca les dejo la linea del new.
pawn Код:
new Botname[MAX_PLAYER_NAME] = "Chatbot!";
La idea es poder cambiar "Botname" desde el juego, para que sea mas comodo.
Reply
#2

Intenta con

pawn Код:
format(Botname, MAX_PLAYER_NAME, "%s", inputtext);
Reply
#3

Fuckyeah.
Funcino, muchas gracias Chiri!
No se me habia ocurrido.
Reply
#4

Quote:
Originally Posted by Chιrι
Посмотреть сообщение
Intenta con

pawn Код:
format(Botname, MAX_PLAYER_NAME, "%s", inputtext);
Te paso un dato, esa es una forma muy inefeciente de copiar texto, mejor usa strcpy.

pawn Код:
#define strcpy(%0,%1,%2) strcat((%0[0] = '\0', %0), %1, %2)
Uso:
pawn Код:
strcpy(Botname, inputtext, sizeof(Botname));
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)