Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


  Show Posts
Pages: [1]
1  Scripting / Script Help / Re: Help on ctf script on: August 17, 2011, 04:29:32 pm
Thank you it finally worked  ;D ;D ;D
2  Scripting / Script Help / Help on ctf script on: August 16, 2011, 02:45:01 am
Im trying to make a ctf script but idk how to make one icon do some while the other one does something esle
heres the code btw im new at scripting squirrel

Code: [Select]
function onPlayerConnect(player)
{
local REDFLAG = CreatePickup( 1321,Vector( 94.92, -962.1, 29.18 ) );
local BLUEFLAG = CreatePickup( 1321,Vector( 54.44, -566.3, 26.15 ) );
CreateBlip( BLIP_8BALL, 94.92, -962.1, 29.18  );
CreateBlip( BLIP_8BALL, 54.44, -566.3, 26.15  );
MessagePlayer( "Welcome to the server!", player, 255, 0, 0 );
return 1;
}
function onPickupPickedUp( pPlayer, pPickup )
{
if (pPickup.ID == REDFLAG) // || Team == Blue
{
MessagePlayer( "blah", pPlayer, 255, 0, 0 );
//CreateCheckpoint(0,0,0, 5.0,[BLUE]);

}
else if (pPickup.ID == BLUEFLAG) //|| Team == Blue
{
MessagePlayer("BLAH", pPlayer, 255,0,0);
//CreateCheckpoint(0,0,0, 5.0);
}
return 1;
}
function onPlayerEnterCheckpoint( Player, cp )
{
cp.Remove();
}
3  Liberty Unleashed / Suggestions / instead of a server browser on: July 04, 2009, 02:34:41 am
why not making it like a menu that shows all the servers and can find players. mostly like MTA SA
Pages: [1]
© Liberty Unleashed Team.