array is too small [Problem]
#1

PHP код:
C:\Users\Matt\Desktop\SAMP\UMRP\gamemodes\UMRP.pwn(7161) : error 047: array sizes do not match, or destination array is too small
C
:\Users\Matt\Desktop\SAMP\UMRP\gamemodes\UMRP.pwn(7163) : error 047: array sizes do not match, or destination array is too small
Pawn compiler 3.2.3664              Copyright 
(c1997-2006ITB CompuPhase
2 Errors

PHP код:
public OnPlayerDisconnect(playeridreason)
{
    
// IRC
    
new leaveMsg[128], name[MAX_PLAYER_NAME], reasonMsg[8];
    switch(
reason)
    {
        case 
0reasonMsg "Timeout/Crashed";
        case 
1reasonMsg "Leaving";
        case 
2reasonMsg "Kicked/Banned";
    } 
Reply
#2

PHP код:
public OnPlayerDisconnect(playeridreason)
{
    
// IRC
    
new leaveMsg[128], name[MAX_PLAYER_NAME], reasonMsg[8];
    switch(
reason)
    {
        case 
0reasonMsg "Timeout/Crashed";
        case 
1reasonMsg "Leaving";
        case 
2reasonMsg "Kicked/Banned";
    } 
Your reasonMsg's array size is too small - 8.

Replace your code with this -

PHP код:
public OnPlayerDisconnect(playeridreason)
{
    
// IRC
    
new leaveMsg[128], name[MAX_PLAYER_NAME], reasonMsg[15];
    switch(
reason)
    {
        case 
0reasonMsg "Timeout/Crashed";
        case 
1reasonMsg "Leaving";
        case 
2reasonMsg "Kicked/Banned";
    } 
Reply
#3

Change i mean increase the [Number here for more letters] or try Making ur MSG Smaller..
Reply
#4

thanks i work.
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)