SA-MP Forums Archive
Can someone please send me a Register and login script and tell me where to place it on Pawno? - 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: Can someone please send me a Register and login script and tell me where to place it on Pawno? (/showthread.php?tid=441985)



Can someone please send me a Register and login script and tell me where to place it on Pawno? - kjek98 - 05.06.2013

Can someone please send me a Register and login script and tell me where to place it on Pawno?
Its my first time scripting.
Код:
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT

#include <a_samp>

#if defined FILTERSCRIPT

public OnFilterScriptInit()
{
	print("\n--------------------------------------");
	print(" Blank Filterscript by your name here");
	print("--------------------------------------\n");
	return 1;
}

public OnFilterScriptExit()
{
	return 1;
}

#else

main()
{
	print("\n----------------------------------");
	print(" Testing");
	print("----------------------------------\n");
}

#endif

public OnGameModeInit()
{
	// Don't use these lines if it's a filterscript
	SetGameModeText("Blank Script");
	AddPlayerClass(99, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
	AddPlayerClass(60,1958.8724,1343.1512,15.3746,270.3958,0,0,0,0,0,0); // skin
	// PD CLASS
	AddPlayerClass(285,1561.4171,-1693.9485,5.8906,177.2525,24,100,27,100,34,100);// pdclass1
    AddPlayerClass(288,1566.6099,-1693.9060,5.8906,171.6125, 24, 100, 27, 100, 34, 100);// pdclass2
    AddPlayerClass(283,1572.8768,-1694.2316,6.2188,172.5525, 24, 100, 27, 100, 34, 100);// pdclass 3
    AddPlayerClass(280,1578.6930,-1694.5786,6.2188,186.0260, 24, 100, 27, 100, 34, 100);// pdcalss 4
	
	return 1;
}

public OnGameModeExit()
{
	return 1;
}

public OnPlayerRequestClass(playerid, classid)
{
	SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
	SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
	SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
	return 1;
}

public OnPlayerConnect(playerid)
{
	return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
	return 1;
}

public OnPlayerSpawn(playerid)
{
	return 1;
}

public OnPlayerDeath(playerid, killerid, reason)
{
	return 1;
}

public OnVehicleSpawn(vehicleid)
{
	return 1;
}

public OnVehicleDeath(vehicleid, killerid)
{
	return 1;
}

public OnPlayerText(playerid, text[])
{
	return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
	if (strcmp("/mycommand", cmdtext, true, 10) == 0)
	{
		// Do something here
		return 1;
	}
	return 0;
}

public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
	return 1;
}

public OnPlayerExitVehicle(playerid, vehicleid)
{
	return 1;
}

public OnPlayerStateChange(playerid, newstate, oldstate)
{
	return 1;
}

public OnPlayerEnterCheckpoint(playerid)
{
	return 1;
}

public OnPlayerLeaveCheckpoint(playerid)
{
	return 1;
}

public OnPlayerEnterRaceCheckpoint(playerid)
{
	return 1;
}

public OnPlayerLeaveRaceCheckpoint(playerid)
{
	return 1;
}

public OnRconCommand(cmd[])
{
	return 1;
}

public OnPlayerRequestSpawn(playerid)
{
	return 1;
}

public OnObjectMoved(objectid)
{
	return 1;
}

public OnPlayerObjectMoved(playerid, objectid)
{
	return 1;
}

public OnPlayerPickUpPickup(playerid, pickupid)
{
	return 1;
}

public OnVehicleMod(playerid, vehicleid, componentid)
{
	return 1;
}

public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
{
	return 1;
}

public OnVehicleRespray(playerid, vehicleid, color1, color2)
{
	return 1;
}

public OnPlayerSelectedMenuRow(playerid, row)
{
	return 1;
}

public OnPlayerExitedMenu(playerid)
{
	return 1;
}

public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
{
	return 1;
}

public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
	return 1;
}

public OnRconLoginAttempt(ip[], password[], success)
{
	return 1;
}

public OnPlayerUpdate(playerid)
{
	return 1;
}

public OnPlayerStreamIn(playerid, forplayerid)
{
	return 1;
}

public OnPlayerStreamOut(playerid, forplayerid)
{
	return 1;
}

public OnVehicleStreamIn(vehicleid, forplayerid)
{
	return 1;
}

public OnVehicleStreamOut(vehicleid, forplayerid)
{
	return 1;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
	return 1;
}

public OnPlayerClickPlayer(playerid, clickedplayerid, source)
{
	return 1;
}



Re: Can someone please send me a Register and login script and tell me where to place it on Pawno? - CrazyChoco - 05.06.2013

If this is your first time you are using the pawn language, then you better stop doing that.
Start with something easy like play around with the functions on the samp wiki...


Re: Can someone please send me a Register and login script and tell me where to place it on Pawno? - geohareas - 05.06.2013

Welcome to the world of pawno pal!You can search on the filterscripts section for register/login system.Download the filterscript and paste the filterscript's callbacks to your gamemode callbacks.

Q: What does call back mean?
A: Kinda hard for me to explain.A callback usually starts with "public"
Ex. Public OnPlayerConnect

Feel free to reply below if you got questions and remember that scripting requires patience!

Best Regards,
George


Re: Can someone please send me a Register and login script and tell me where to place it on Pawno? - kjek98 - 05.06.2013

Well all i relly know is how to addclass and guns thats all i relly know.


Re: Can someone please send me a Register and login script and tell me where to place it on Pawno? - geohareas - 05.06.2013

I would sugget you to have a look on the scripting tutorials,thre you can find out how to build your own diaalog based register system!


Re: Can someone please send me a Register and login script and tell me where to place it on Pawno? - kjek98 - 05.06.2013

where could i finde the turtorials?


Re: Can someone please send me a Register and login script and tell me where to place it on Pawno? - Luis- - 05.06.2013

... There is a subsection on this board.