Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: Gulk on May 10, 2015, 10:34 AM

Title: [REQ] How can I do this?
Post by: Gulk on May 10, 2015, 10:34 AM
I am attempting to give some skins more than 3 weapons with "AddClass" and it doesn't allow it. 3 is max.

I want to give certain skins armour too, upon spawn - [Cop] 50 max armour - [Vice City Crusader] 100 max armour.

nothing i try worked
Title: Re: [REQ] How can I do this?
Post by: SantaClaus on May 10, 2015, 12:28 PM
Maybe using player.Armour and player.GiveWeapon in OnPlayerSpawn. Maybe something like this (not tested):

function onPlayerSpawn( player )
{
   if(player.Class == TEAM_COPS){
     player.Armour = 50;
   }
    if(player.Class == TEAM_VCR){
    player.Armour = 100;
   }

// For weapons

   if(player.Class == TEAM_XXX)
   {
     player.GiveWeapon(stubID, ammo); // Wep 1
     player.GiveWeapon(rocketID, ammo); // Wep 2
   }

}

if TEAM_XXX has 3 weapons in AddClass, then add the extra ones by using the function player.GiveWeapon.

TEAM_COPS, TEAM_VCR and TEAM_XXX refer to the player.Class (classid).
Title: Re: [REQ] How can I do this?
Post by: DizzasTeR on May 10, 2015, 01:21 PM
const SKIN_COP = 1;
const SKIN_CIV = 130;

function onPlayerSpawn( player )
{
# Just create your classes however you want, using config or addclass and use this simple thing.
        # Using the skin ids to recognize the class, we can easily give our desired things
# Don't forget to use your own skin IDs constants up there.

switch( player.Skin )
{
case SKIN_COP:
player.Armour = 50;
                player.GiveWeapon( weapon, ammo);
                player.GiveWeapon( weapon, ammo);
break;

case SKIN_CIV:
player.Armour = 100;
                player.GiveWeapon( weapon, ammo);
                player.GiveWeapon( weapon, ammo);
break;
}
}

Simple as that :)
Title: Re: [REQ] How can I do this?
Post by: Stormeus on May 10, 2015, 06:55 PM
Support threads are not a place for condescending remarks and personal debates. Thread cleaned.
Title: Re: [REQ] How can I do this?
Post by: Gulk on May 11, 2015, 06:09 PM
Done,

const SKIN_COP1 = 166;
 const SKIN_COP2 = 120;
 const SKIN_VCC = 123;
 const SKIN_SS1 = 162;
 const SKIN_SS2 = 117;

function onPlayerSpawn( player )
{
switch( player.Skin )
 {
  case SKIN_COP1:
                player.Armour = 50;
  break;
 
   case SKIN_COP2:
                player.Armour = 50;
  break;

  case SKIN_VCC:
  player.Armour = 100;
                player.GiveWeapon( 27, 200);
                player.GiveWeapon( 15, 12);
  break;
 
  case SKIN_SS1:
                player.GiveWeapon( 25, 250);
  break;
 
  case SKIN_SS2:
                player.GiveWeapon( 25, 250);
  break;
 }
}

Thanks all
Title: Re: [REQ] How can I do this?
Post by: Thijn on May 11, 2015, 06:34 PM
You can combine the cop and SS skins like so:
case SKIN_COP1:
case SKIN_COP2:
    player.Armour = 50;
break;