Got a new server! - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Got a new server! (
/showthread.php?tid=91013)
Got a new server! -
ToCa - 11.08.2009
Hey guys, i just bought a samp server, works really good.
But as i am quite new to samp, н dont know many things. Im able to add cars to some cordinats with pwno, and install stuff.
Was just wondering if anyone like to have admin and help me with things. Be sure u know how to do things.
For exampel i would like me and my friend spawn automaticly near a house we made as ours ^^.
Pm me or tell me you e-meil.
Cheers.
Re: Got a new server! -
propilot - 12.08.2009
Spawn is not that hard.

anyways have fun

Naa I dont want to help sorry. I have good admin position with 50-100+ players everyday
Re: Got a new server! -
DMSOrg - 12.08.2009
Код:
OnPlayerRequestSpawn(playerid)
{
if(GetPlayerName(playerid) == "insert the name here")
{
SetPlayerPos(playerid, x, y, z); //replace x, y, z with coords
SetPlayerSkin(playerid, skin); //replace skin with the skin id
return 1;
}
else{ }
return 1;
}
Re: Got a new server! -
Correlli - 12.08.2009
[K4L]Jake, you can't use GetPlayerName function like that.