Select random
#9

Did in this way:

pawn Код:
new const g_LocationData[][e_LocData] =
{
    {"Bank", 2315.952880, -1.618174, 26.742187},
    {"LS Atrium", 1710.433715, -1669.379272, 20.225049}
};

enum e_LocData
{
    e_LocName[32],
    Float:e_LocX,
    Float:e_LocY,
    Float:e_LocZ
};

CMD:tele(playerid, params[])
(
    new randomloc = random(sizeof(g_LocationData));
    new Msg[48];
    format(Msg, sizeof(Msg), "Teleported to: %s", g_LocationData[randomloc][e_LocName]);
    SetPlayerPos(playerid, g_LocationData[randomloc][e_LocX], g_LocationData[randomloc][e_LocY], g_LocationData[randomloc][e_LocZ]);
    SendClientMessage(playerid, -1, Msg);
    SetPVarString(playerid,"RandomLocation",g_LocationData[randomloc][e_LocName]);
    return 1;
)

CMD:last(playerid, params[])
{
    new string[80];
    GetPVarString(playerid, "RandomLocation",g_LocationData[randomloc][e_LocName]);
    format(string, sizeof(string), "Last teleport was to: %s" GetPVarString(playerid, "RandomLocation",g_LocationData[randomloc][e_LocName]));
    return 1
}
But i'm getting "undefinel symbol: randomloc" at /last command.
Reply


Messages In This Thread
Select random - by KinderClans - 18.08.2018, 21:45
Re: Select random - by EzeHermes - 19.08.2018, 02:29
Re: Select random - by KinderClans - 19.08.2018, 08:39
Re: Select random - by EzeHermes - 20.08.2018, 04:27
Re: Select random - by KinderClans - 20.08.2018, 09:05
Re: Select random - by Calisthenics - 20.08.2018, 09:33
Re: Select random - by KinderClans - 20.08.2018, 09:41
Re: Select random - by Sew_Sumi - 20.08.2018, 10:08
Re: Select random - by KinderClans - 20.08.2018, 10:13
Re: Select random - by Calisthenics - 20.08.2018, 10:14
Re: Select random - by KinderClans - 20.08.2018, 10:15
Re: Select random - by Calisthenics - 20.08.2018, 10:16
Re: Select random - by Sew_Sumi - 20.08.2018, 10:48
Re: Select random - by KinderClans - 20.08.2018, 10:57
Re: Select random - by Zeth - 20.08.2018, 11:17
Re: Select random - by KinderClans - 20.08.2018, 12:49

Forum Jump:


Users browsing this thread: 2 Guest(s)