Vice City: Multiplayer

Server Development => Scripting and Server Management => Snippet Showroom => Topic started by: PsyChO_KiLLeR on Mar 05, 2015, 04:21 AM

Title: Custom Weapon
Post by: PsyChO_KiLLeR on Mar 05, 2015, 04:21 AM
well i am releasing some custom weapons here i give two custom weapons there
Link http://www.2shared.com/file/zh20OEqP/w101_s8_l28_AK.html and
 http://www.2shared.com/file/KfvxygzL/w102_s8_l28_m60.html
Just Paste it to server/store/weapons/here
 and take this cmd which unable u to done it quick dont need to use /exec 

       else if ( cmd == "buy" )
{
if ( text )
{
if (player.IsSpawned)
{if (IsNum ( text ))
{
if ( text == "101" )
{
MessagePlayer( "You Bought Custom Weapon of AK-47", player );
player.SetWeapon( 101,999);
}
else if ( text == "102" )
{
MessagePlayer( "You Bought Custom Weapon of Rifle", player );
player.SetWeapon( 102,999);
}
}
else MessagePlayer( "[Error] - ID must be in numbers", player );
}
else MessagePlayer( "[Error] - You have'nt spawned yet!", player );
}
else MessagePlayer( "[Syntax] - /wep <Wep ID 100 to 108>", player );
}





And If u want also hotkey then here it is i am ready to make it

Add this on Main.nut onScriptLoad L <- BindKey(true, 0x4C,0,0);


Add this on Your Function KeyDown

if( key == L )
{
       if ( !player.IsSpawned ) MessagePlayer( "[Error] - You haven't spawned yet..", player );
else
{
                   player.SetWeapon(101,999);
                   player.SetWeapon(102,999);
                   Announce( "Custom Weapons Given", player );
   MessagePlayer( "You got Custom Weapons.", player );
}
}   


UPDATED

Maybe U Enjoy THat If any error comes then tell me


Credits Goes To Rathore and Me Rathore help me in buy command


Title: Re: Custom Weapon
Post by: jayant on Mar 05, 2015, 05:31 AM
Edit the script..So,everyone can use the script..ePrivMessage and DecCash will not work for others,If they are not having them in their script..Give credits to those who helped you in making the Custom weapons.
Title: Re: Custom Weapon
Post by: MacTavish on Mar 05, 2015, 06:41 AM
Use MessagePlayer instead PrivMessage and ePrivMessage and use player.Cash instead DecCash
Title: Re: Custom Weapon
Post by: Kratos_ on Mar 05, 2015, 06:56 AM
Quote from: Beztone on Mar 05, 2015, 06:41 AMuse player.Cash instead DecCash

DecCash is safer than using player.Cash directly as DecCash tracks player cash through arrays . So, player cash will follow Server Side
Cash Protocol & therefore money hack would end up with no result  .
Title: Re: Custom Weapon
Post by: PsyChO_KiLLeR on Mar 05, 2015, 06:59 AM
well kratos some newbies dont have deccash so i put playercash
Title: Re: Custom Weapon
Post by: MacTavish on Mar 05, 2015, 07:00 AM
Quote from: PsyChO_KiLLeR on Mar 05, 2015, 06:59 AMwell kratos some newbies dont have deccash so i put playercash

Kratos is right. Post your IncCash and DecCash function
Title: Re: Custom Weapon
Post by: PsyChO_KiLLeR on Mar 05, 2015, 07:01 AM
there it is

function DecCash( player, amount )
{
    local cash = status[ player.ID ].Cash;
   local det = cash - amount;
   status[ player.ID ].Cash = det;
   player.Cash = det;
}

function IncCash( player, amount )
{
      local cash = status[ player.ID ].Cash;
     local add = cash + amount;
     status[ player.ID ].Cash = add;
     player.Cash = add;
}
Title: Re: Custom Weapon
Post by: PsyChO_KiLLeR on Mar 05, 2015, 10:34 AM
whats now?
Title: Re: Custom Weapon
Post by: rObInX on Mar 05, 2015, 10:43 AM
Quote from: PsyChO_KiLLeR on Mar 05, 2015, 10:34 AMwhats now?

I don't know why is such things being released here.

This is script showroom.
Title: Re: Custom Weapon
Post by: PsyChO_KiLLeR on Mar 05, 2015, 10:50 AM
what ur mean any error?
Title: Re: Custom Weapon
Post by: MacTavish on Mar 05, 2015, 10:55 AM
Quote from: PsyChO_KiLLeR on Mar 05, 2015, 10:50 AMwhat ur mean any error?
You are posting stuff in script showroom ( Script showroom is for releasing scripts ). It have to be in Snippet showroom
Title: Re: Custom Weapon
Post by: PsyChO_KiLLeR on Mar 05, 2015, 12:10 PM
ok next time  i will be
Title: Re: Custom Weapon
Post by: Sebastian on Mar 05, 2015, 01:54 PM
Quote from: PsyChO_KiLLeR on Mar 05, 2015, 04:21 AMCredits Goes To Rathore and Me Rathore help me in buy command

Ok, but where are the the credits for the creators of these weapons ? :|
Even if we add them in our servers, we still need to give them credits !
Title: Re: Custom Weapon
Post by: DeViL_JiN on Mar 05, 2015, 03:11 PM
Quote from: sseebbyy on Mar 05, 2015, 01:54 PM
Quote from: PsyChO_KiLLeR on Mar 05, 2015, 04:21 AMCredits Goes To Rathore and Me Rathore help me in buy command

Ok, but where are the the credits for the creators of these weapons ? :|
Even if we add them in our servers, we still need to give them credits !
True.
Title: Re: Custom Weapon
Post by: PsyChO_KiLLeR on Mar 06, 2015, 06:51 AM
These are created by me
Title: Re: Custom Weapon
Post by: MacTavish on Mar 06, 2015, 07:01 AM
Quote from: PsyChO_KiLLeR on Mar 06, 2015, 06:51 AMThese are created by me
You mean Weps are created by you ok we trust then please post an Definition of an wep.xml and explain that what and where to put the data
Title: Re: Custom Weapon
Post by: PsyChO_KiLLeR on Mar 06, 2015, 07:58 AM
lol what u try to say?
these are setted by me this is my mean not that whole is create by me