SA-MP Forums Archive
Need few things - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Need few things (/showthread.php?tid=385773)



Need few things - Banaaniaju - 17.10.2012

Hi all!
I need few things what i didn't find myself.
I'm kinda new on scripting, so please if you post then make it clear how and where i have to put something.

1. /sync system

2. Invisible on minimap and map.

3. Classical, simple and good /register, /login system.

Thanks!


Re: Need few things - Banaaniaju - 18.10.2012

BUMP!


AW: Need few things - BiosMarcel - 18.10.2012

1: What is that
2: LimitPlayerMarkerRadius(0.0);
3: Create it by yourself(with tutorial),Download it


Re: Need few things - Banaaniaju - 18.10.2012

Sync system is used in A/D gamemodes.
But where excatly i have to put LimitPlayerMarkerRadius(0.0);?


Re: Need few things - Banaaniaju - 19.10.2012

BUMP!


Re: Need few things - Majava - 19.10.2012

Login/Register Tutorial LINK Works very well on me !


Re: Need few things - RanSEE - 19.10.2012

Код:
CMD:sync(playerid, params[])
{
	new Float:A;
	GetPlayerPos(playerid,X,Y,Z);
	GetPlayerFacingAngle(playerid,A);
	SetPlayerPos(playerid,X,Y,Z);
	SetPlayerFacingAngle(playerid,A);
	PlayerPlaySound(playerid, 1058, 0.0, 0.0, 0.0);
	SendClientMessage(playerid,0xD8F6F6FF,"You are now sync'ed.");
	return 1;
}
2

Код:
ShowPlayerMarkers(false);
Flase marker on map.

3
I Suggest Y_INI
https://sampforum.blast.hk/showthread.php?tid=273088


Re: Need few things - Banaaniaju - 19.10.2012

Thanks you, but where exactly i have to put these codes?
If i have to edit GM, then where i have to paste them?
Sorry, i'm very newbie at scripting.


Re: Need few things - RanSEE - 19.10.2012

http://wiki.sa-mp.com
no one could take their time to explain everything
sync goes under onplayercommandtext

follow the tutorial it tells everything itself.


Re: Need few things - RajatPawar - 19.10.2012

If you really want to learn scripting, visit the link RansEE gave, however these login/registering systems work well.