23.12.2014, 21:03
I've seen skins get desynced from time to time naturally it's rare but it can happen. Seems like it could pretty useful for NPCs however 1 npc could be used as much as you like.
To some extent, yes - just send, for example, the bot's new skin to one player then they will see it differently to everyone else. Also, I thought there used to be a SendRawCommand(playerid, commandid, ...) or similar - did I just imagine that?
|
enum
{
BS_BOOL,
BS_CHAR,
BS_UNSIGNEDCHAR,
BS_SHORT,
BS_UNSIGNEDSHORT,
BS_INT,
BS_UNSIGNEDINT,
BS_FLOAT,
BS_STRING
};
// FOR DEVELOPERS ONLY!!!!!!!!!!!!!!!!!!!!
native SendRPC(playerid, RPC, {Float,_}:...); // playerid == -1 -> broadcast
native SendData(playerid, {Float,_}:...); // playerid == -1 -> broadcast
CMD:bubble(playerid, params[]) // illustrate how SendRPC works. this is equal to SetPlayerChatBubbleForPlayer
{
SendRPC(playerid, 0x3B, // rpcid
BS_UNSIGNEDSHORT, strval(params), // at player, where you want to create bubble
BS_INT, 0x33FF33AA, // color
BS_FLOAT, 50.0, // drawdistance
BS_INT, 4325, // expiretime
BS_UNSIGNEDCHAR, 3, // string lenght
BS_STRING, "asd"); // string
return 1;
}
Just had a chat on IRC that reminded me of something I came up with a long time ago and should not be hard to add to this plugin. I can't see any reason why things like "ApplyAnimation", "SetPlayerSkin", "SetPlayerPos" etc couldn't be made per-player as well, for example "SetPlayerPosForPlayer(playerid, forid, Float:x, Float:y, Float:z);". I doubt it would be much use for real players, but invaluable for NPCs. You could have a single "shopkeeper" bot, in a different shop/world with a different skin doing a different serving action for every player - one player slot, 500 bots! That was the use I thought of, but I'm sure there are more:
Undercover cops/admins whose skin is a police uniform only for other cops. TF2-style spys (again, different skins for different teams). Players in multiple virtual worlds at once by matching their worlds for other players (these would be harder as virtual worlds also control sync server-side, they aren't just a simple packet sent). |
GetVehicleAngularVelocity(vehicleid, &Float:X, &Float:Y, &Float:Z)
SetVehicleRotation(vehicleid, Float:X, Float:Y, Float:Z)
Any chance R11 will be out by the end of the week? Functions such as SetPlayerPos / Skin Changer forplayer would be a game changer for SA:MP servers.
|