need help with send values from FS TO GM
#1

well, I need to transfer player's stuff from FS to GM but I get error, what's wrong?
FS CODE
pawn Code:
#include <a_samp>
enum pInfo
{
    shit
}
new PlayerInfo[MAX_PLAYERS][pInfo];

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print(" Test FS");
    print("--------------------------------------\n");
    PlayerInfo[0][shit]=243;
    CallRemoteFunction("callMe","ddd",0,shit,PlayerInfo[0][shit]);
    return 1;
}

public OnFilterScriptExit()
{
    return 1;
}
GM Code
pawn Code:
#include <a_samp>

enum pInfo
{
    shit
}
new PlayerInfo[MAX_PLAYERS][pInfo];

main()
{
    print("\n----------------------------------");
    print(" test gm");
    print("----------------------------------\n");
}

public OnGameModeInit()
{
    // Don't use these lines if it's a filterscript
    SetGameModeText("Blank Script");
    AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
    return 1;
}

public OnGameModeExit()
{
    return 1;
}

forward callMe(playerid,key,date);
public callMe(playerid,key,date)
{
    PlayerInfo[playerid][key]=date;//line 36
    printf("shit = %d",PlayerInfo[playerid][key]); //line 37
    return 1;
}
error code
Code:
tst.pwn(36) : warning 213: tag mismatch
tst.pwn(37) : warning 213: tag mismatch
I just testing only with one id
Reply


Messages In This Thread
need help with send values from FS TO GM - by mineralo - 21.06.2013, 11:57
Re: need help with send values from FS TO GM - by Smokkr - 21.06.2013, 12:01
Re: need help with send values from FS TO GM - by mineralo - 21.06.2013, 12:06
Re: need help with send values from FS TO GM - by mineralo - 21.06.2013, 12:09
Re: need help with send values from FS TO GM - by mineralo - 21.06.2013, 12:13
Re: need help with send values from FS TO GM - by mineralo - 21.06.2013, 12:17

Forum Jump:


Users browsing this thread: 2 Guest(s)