21.06.2013, 11:57
well, I need to transfer player's stuff from FS to GM but I get error, what's wrong?
FS CODE
GM Code
error code
I just testing only with one id
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;
}
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;
}
Code:
tst.pwn(36) : warning 213: tag mismatch tst.pwn(37) : warning 213: tag mismatch