SA-MP Forums Archive
[Ajuda] Erro para mostrar TextDraw - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Erro para mostrar TextDraw (/showthread.php?tid=643419)



Erro para mostrar TextDraw - JoaoBorges - 19.10.2017

Galera eu criei TextDraws com o TDE, eu consigo criar a variбvel e colocar as TextDrawCreate no OnGameInit, mбs nб hora de mostrar aparece este erro:
PHP код:
error 032: array index out of bounds (variable "TDEditor_TD"
Cуdigo das TextDraw:
PHP код:
new Text:TDEditor_TD[12];
TextDrawShowForPlayer(playeridText:TDEditor_TD[12]); 
Eu coloquei todas as TextDraw no OnGameInit e o TextDrawShowForPlayer no OnPlayerSpawn!


Re: Erro para mostrar TextDraw - Lontresca - 19.10.2017

PHP код:
TextDrawShowForPlayer(playeridTDEditor_TD[12]); 



Re: Erro para mostrar TextDraw - SammyJ - 19.10.2017

Quote:
Originally Posted by JoaoBorges
Посмотреть сообщение
Код:
error 032: array index out of bounds (variable "TDEditor_TD")
Traduзгo:
нndice fora dos limites
Lembre-se que array comeзa com index 0. Nessa caso a variбvel array TDEditor_TD tem os нndices
index-0: 1°
index-1: 2°
index-2: 3°
index-3: 4°
index-4: 5°
index-5: 6°
index-6: 7°
index-7: 8°
index-8: 9°
index-9: 10°
index-10: 11°
index-11: 12°

Код:
new Text:TDEditor_TD[13];



Re: Erro para mostrar TextDraw - Bruno13 - 19.10.2017

Quote:
Originally Posted by Lontresca
Посмотреть сообщение
PHP код:
TextDrawShowForPlayer(playeridTDEditor_TD[12]); 



Re: Erro para mostrar TextDraw - JoaoBorges - 19.10.2017

Quote:
Originally Posted by SammyJ
Посмотреть сообщение
Traduзгo:
нndice fora dos limites
Lembre-se que array comeзa com index 0. Nessa caso a variбvel array TDEditor_TD tem os нndices
index-0: 1°
index-1: 2°
index-2: 3°
index-3: 4°
index-4: 5°
index-5: 6°
index-6: 7°
index-7: 8°
index-8: 9°
index-9: 10°
index-10: 11°
index-11: 12°

Код:
new Text:TDEditor_TD[13];
Vlw!