[Plugin] YSF - kurta999's version

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.
Reply

That seems like a really logical method of working with few NPC's for a large purpose. But, how would this be achieved without client modification? That would be amazing if this was done without modifying client code but then again I don't really know these things work.
Reply

By only allowing the server to send certain pieces of sync data to specific players rather than all players. That's a fantastic idea and I'd love to see it happen!
Reply

Could that really be done with a plug-in?
Reply

Quote:
Originally Posted by Y_Less
View Post
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?
Yes, but I don't adverties these two function. Anyway thx for your ideas, i'll try to do it in future.

pawn Code:
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;
}
Reply

SetPlayerGravity not work for me

I use the FS example. The plugin load perfect.

Using the Command /mygrav F (F is the gravity) in the chat appear:

gravity has been changed to F old has 0.000 (F is the gravity)

and, with another float value:

gravity has been changed to AF old has 0.000 (AF is the gravity)
Reply

Quote:
Originally Posted by Y_Less
View Post
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).
Holy shit, this is a really amazing idea!!! Why don't you Y_Less make your own plugin yourself?
Reply

How can I get the id of a player that an object is attached to (with AttachObjectToPlayer)?
Reply

If everything okey tomorrow i'll try to fix it, today I added GDK (big thank to Gamer_Z who helped me with errors xd)

R11 will contain lot of new features & bugfixes, it will be my delayed xmas gift for samp players
Reply

Any way to get forklift elevator state/position/offset/something?
Reply

Impossible. My fucking VPS dead, very nice, now I need to fix it/reinstall it before I can test latest version on linux.
Reply

Well, get yo' ass on Skype, and I will test it for you. Simple as that.
Reply

Quote:
Originally Posted by Riddick94
Посмотреть сообщение
Well, get yo' ass on Skype, and I will test it for you. Simple as that.
2char.
Reply

Quote:
Originally Posted by KyleSmith
Посмотреть сообщение
2char.
May someone introduce me to "2char" slang? Am I missing something? I see that a lot around the forum.
Reply

Quote:
Originally Posted by Riddick94
Посмотреть сообщение
May someone introduce me to "2char" slang? Am I missing something? I see that a lot around the forum.
Its used to meet the minimum character requirement for posting. When it's used alone, its basically saying "no comment"...
Reply

Is it possible to add
pawn Код:
GetVehicleAngularVelocity(vehicleid, &Float:X, &Float:Y, &Float:Z)
SetVehicleRotation(vehicleid, Float:X, Float:Y, Float:Z)
Would be awesome
Reply

Quote:
Originally Posted by Infra
Посмотреть сообщение
Is it possible to add
pawn Код:
GetVehicleAngularVelocity(vehicleid, &Float:X, &Float:Y, &Float:Z)
SetVehicleRotation(vehicleid, Float:X, Float:Y, Float:Z)
Would be awesome
Impossible
Reply

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.
Reply

Quote:
Originally Posted by Abagail
Посмотреть сообщение
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.
Not would be, it will be! Who want to help me, please test when TogglePlayerControllable(playerid, false) will reset or not when player dies and respawn.

E: https://github.com/kurta999/YSF/comm...b1c2ca7af297f4
Reply

Kurta i know some possible and great functions for your project.

SetPlayerFakeHealth(playerid,float:hp); // sets the serverside health
TogglePlayerFakeHealth(playerid,bool:value); // enables the FakeHealth and just sync the serverside value
the same with:
Armour - same like health
Position - if someone is on the street and afk, moving him without a resync by coming back into the game

explanation of the fakehealth, what will work too for armour:
the player just need to be synced by the server, if you want to add a system what allows players to get hurt on desktop, they will just change the health by coming back into the game.
with this functions you can show everyone the new health without waiting for a sync.

the same will work if you give someone godmode.
think about if you got 50 HP... you will get a half healthbar.
if i hit you by a deagle you will loose it and get it back by the server.
if the same happens to you at 20 HP, you will die.
(this can happens too by falling while having godmode and get over 100 damage)

all you can do is giving 100.000 HP clientside and show everyone a full healthbar.
with fakehealth you can give 100.000 HP clientside and show serverside 20 HP.
someone hit you with a deagle and the clienthealth will be 99.956 and the healthbar will stay at 20 for everyone.

that will change alot of possibility for everyone who want to make a afk-damage,godmode or spawn-protection(after login with old health) system. a complete serverside health system to prevent clientside-godmode-cheats will be possible too with that.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)