26.05.2012, 03:47
(
Последний раз редактировалось Azazelo; 26.05.2012 в 04:00.
Причина: More test
)
error 028: invalid subscript (not an array or too many subscripts)
First time see this , what are possible solution for this error?
i try to change but same error
and i try this and it make no sense
Did i extend limit of stock func ?? Is there a limit of maximum stock func ?
First time see this , what are possible solution for this error?
Quote:
stock comand1() // this work { //some code } stock comand2() { //some code //this work comand1();//error 028 } |
Quote:
stock comand1() // this work { //some code } stock comand2()//this work { //some code } //Public OnPlayer public OnPlayerCommandText(playerid,cmdtext[]) { if(!strcmp(cmdtext,"/mycommand",true)) { comand1(); comand2();//error 028 return 1; } return 0; } |
Quote:
stock comand1() // this work { //some code } stock comand2()//this work { //some code } //Public OnPlayer public OnPlayerCommandText(playerid,cmdtext[]) { if(!strcmp(cmdtext,"/mycommand",true)) { comand2(); comand1(); //error 028 return 1; } return 0; } |