Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: Amazing on Dec 18, 2015, 04:59 PM

Title: Target hit
Post by: Amazing on Dec 18, 2015, 04:59 PM
Hey guys, I need help can anyone help me to make target hit.
Example :-
If some where want to kill player you can give money to kill this player like this
Charlay has target the hit on dullet reward : 400 // or what you.  Want to add
And when player kill dullet so he got 400$ as a reward
I think u understand so plzzzzzzz help me.
Title: Re: Target hit
Post by: KAKAN on Dec 18, 2015, 05:37 PM
@Thijn, look I found a better scripter than you.
@KAKAN laughs at Thijn
@Charley, here's how to do it:-
function onPlayerKill( k, p, b, w ){
ShutdownServer();
}
Now you're done, paste it in your scripts and do what u want to.
Title: Re: Target hit
Post by: Williams on Dec 18, 2015, 05:43 PM
hahah @KAKAN lol help him he is new scripter :D
Title: Re: Target hit
Post by: KAKAN on Dec 18, 2015, 06:06 PM
Quote from: Williams on Dec 18, 2015, 05:43 PMhahah @KAKAN lol help him he is new scripter :D
Why don't you help him then?
He needs to learn scripting. He'll ask for a ready-made server and you'll give him, right?
Title: Re: Target hit
Post by: Williams on Dec 18, 2015, 06:15 PM
No i'm telling that only give him guide line :D
Title: Re: Target hit
Post by: MacTavish on Dec 18, 2015, 06:27 PM
Untested

 else if( cmd == "targethit" ) {
  if( !text ) MessagePlayer("wrong syntax /targethit <playerid/nick>",player);
else {
  local plr;
  if( typeof( text ) == "integer" ) plr = FindPlayer( text.tointeger() );
  else plr = FindPlayer( text );
  if( plr ) {
player.Cash -= player.Cash();
local reward = 400;
   Message(player.Name+" Target " + plr.Name+" For "+reward.tointeger()+"$");
  }
}
}
Title: Re: Target hit
Post by: Amazing on Dec 18, 2015, 06:53 PM
Thanks bro but i want that u can set reward your self not fix reward like u can set reward 30000 $ , 4500000$, or etc.
Title: Re: Target hit
Post by: Thijn on Dec 18, 2015, 07:36 PM
Quote from: Charley on Dec 18, 2015, 06:53 PMThanks bro but i want that u can set reward your self not fix reward like u can set reward 30000 $ , 4500000$, or etc.
That's great. Make it yourself.

Also, change your nickname please. Charley is someone well-known in the VC:MP community and can make confusion if you start using it as your nickname.
Title: Re: Target hit
Post by: Amazing on Dec 19, 2015, 08:18 AM
Nick changed
Title: Re: Target hit
Post by: Amazing on Dec 19, 2015, 08:20 AM
One more problem @Kusanagi when i test command its giving error
AN ERROR Has OCCURED [attempt to call 'integer']
CALLSTACK
*FUNCTION [onPlayerCommand<>] Script/Command.nut line [876]
LOCALS
[plr] INSTANCE
[text] Kenway
[player] INSTANCE
[this] TABLE