SA-MP Forums Archive
Pawn Crash - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Pawn Crash (/showthread.php?tid=634161)



Pawn Crash - Antenastyle - 14.05.2017

I don't know why pawn is crashing when I include this code

Код:
new string[600];
strcat(string, "{00CCFF}/me {FFFFFF}- Para acciones que realiza tu personaje.\n");
strcat(string, "{00CCFF}/do {FFFFFF}- Para rol de ambiente o aclaraciones del /me.\n");
strcat(string, "{00CCFF}/gr {FFFFFF}- Para que grite tu personaje.\n");
strcat(string, "{00CCFF}/c {FFFFFF}- Para susurrar a las personas cercanas.\n");
strcat(string, "{00CCFF}/ame {FFFFFF}- Lo que la gente puede ver de tu personaje.\n");
strcat(string, "{00CCFF}/animaciones {FFFFFF}- Para ver las animaciones del servidor.\n");
strcat(string, "{00CCFF}/acento {FFFFFF}- Para que tu personje tenga un acento.");



Re: Pawn Crash - Toroi - 14.05.2017

Where are you including that code?


Re: Pawn Crash - ProBro - 14.05.2017

explain more


Re: Pawn Crash - Antenastyle - 14.05.2017

Quote:
Originally Posted by Troydere
Посмотреть сообщение
Where are you including that code?
OnDialogResponse, full code

Код:
if(dialogid == DIALOG_AYUDA && response == 1)
	{
		switch(listitem)
		{
		        new string[600];
			strcat(string, "{00CCFF}/me {FFFFFF}- Para acciones que realiza tu personaje.\n");
			strcat(string, "{00CCFF}/do {FFFFFF}- Para rol de ambiente o aclaraciones del /me.\n");
			strcat(string, "{00CCFF}/gr {FFFFFF}- Para que grite tu personaje.\n");
			strcat(string, "{00CCFF}/c {FFFFFF}- Para susurrar a las personas cercanas.\n");
			strcat(string, "{00CCFF}/ame {FFFFFF}- Lo que la gente puede ver de tu personaje.\n");
			strcat(string, "{00CCFF}/animaciones {FFFFFF}- Para ver las animaciones del servidor.\n");
			strcat(string, "{00CCFF}/acento {FFFFFF}- Para que tu personje tenga un acento.");
			
			case 0: ShowPlayerDialog(playerid, DIALOG_AYUDAGENERAL, DIALOG_STYLE_MSGBOX, "Ayuda general:", "{00CCFF}/stats {FFFFFF}- Para mirar estadнsticas y datos de tu personaje.", "Atrбs", "Salir");
			case 1: ShowPlayerDialog(playerid, DIALOG_AYUDAROL, DIALOG_STYLE_MSGBOX, "Ayuda de rol:", string, "Atrбs", "Salir");
		}
		return 1;
	}



Re: Pawn Crash - Toroi - 14.05.2017

Put that code outside the switch statement.


Re: Pawn Crash - SyS - 14.05.2017

you cannot have those statements in switch structure ,put them outside of it.
Edit : slow