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
#2

Wrong try to solve it.
Reply
#3

Quote:
Originally Posted by ******
View Post
You realise that you've removed the most vital information to diagnosing the problem right?
what you mean?
Reply
#4

I'm tring at moment just with one variable and after will try to use more, and if will be alright will use in gm
Reply
#5

I'm sending from fs the enum to gm
pawn Code:
CallRemoteFunction("callMe","ddd",0,shit,PlayerInfo[0][shit]);
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;
}
I'm thinking the enum is not simple variable, could be other type like bool,float,etc
Reply
#6

thanks, works
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)