Need help: error 018: initialization data exceeds declared size
#1

So maybe knows whats wrong...
PHP код:
new fightingstyles[][] = {
{
"Normal"},//This line
{"Boxing"},
{
"KungFu"},
{
"Knee Head"},
{
"HeadGrab"},
{
"KickElbow"}
}; 
And I added this:

PHP код:
new Fightings fightingstyles[playerid][pInfo[playerid][Fighting]-1]; 
On stats command
So I added this and now I have problem Fighting: m

Not Boxing or something

If I chose normal it shows letter a. For example Fighting: a
Reply
#2

pawn Код:
format(str,sizeof(str),"%s",fightingstyles[pInfo[playerid][Fighting]-1]);
or

pawn Код:
new str[10];
strcat(str,fightingstyles[pInfo[playerid][Fighting]-1]);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)