Vice City Multiplayer

VC:MP 0.3 => mIRC/pawn Scripting => Topic started by: Fuzzy168 on November 16, 2011, 11:40:38 am

Title: Headshot help
Post by: Fuzzy168 on November 16, 2011, 11:40:38 am
I want to create a script for headshot. here is my script..
[pawn]   else if(bodypart == case:6)//here is the errors.
   {
       new Msg[128];
      GameTextForPlayer(killerid, "Headshot!");
      IncPlayerKills(killerid);
      IncPlayerDeath(playerid);
      IncPlayerCash(killerid, 500);
      DecPlayerCash(playerid, 200);
      format(Msg, sizeof(Msg), "%s headshoted %s.", gPlayers[killerid], gPlayers[playerid]);
      BotMessageAll(Blue, Msg);
      return 1;
   }
[/pawn]Something wrong? how to put it?
Title: Re: Headshot help
Post by: stormeus on November 16, 2011, 02:51:58 pm
[pawn]bodypart == case:6[/pawn]

case is for switch blocks only.

[pawn]bodypart == 6[/pawn]
Title: Re: Headshot help
Post by: Fuzzy168 on November 17, 2011, 04:11:16 am
so that mean my script should be something like this?
[pawn]   else if(bodypart == 6)
   {
       new Msg[128];
      GameTextForPlayer(killerid, "Headshot!");
      IncPlayerKills(killerid);
      IncPlayerDeath(playerid);
      IncPlayerCash(killerid, 500);
      DecPlayerCash(playerid, 200);
      format(Msg, sizeof(Msg), "%s headshoted %s.", gPlayers[killerid], gPlayers[playerid]);
      BotMessageAll(Blue, Msg);
      return 1;
   }[/pawn]
Title: Re: Headshot help
Post by: stormeus on November 17, 2011, 02:57:55 pm
Yes.
Title: Re: Headshot help
Post by: icecream on November 17, 2011, 03:09:19 pm
Yes.
Btw lol then what are you doing?  ;)
Title: Re: Headshot help
Post by: stormeus on November 18, 2011, 12:21:49 am
Uh, contributing to the community. :-\
Title: Re: Headshot help
Post by: icecream on November 19, 2011, 08:18:43 pm
Uh, contributing to the community. :-\
I didn't say to you Errick  ::)
Title: Re: Headshot help
Post by: stormeus on November 20, 2011, 01:45:03 am
I didn't say to you Errick  ::)

Yes.
Btw lol then what are you doing?  ;)

And who's Errick? :|
Title: Re: Headshot help
Post by: Skirmant on November 20, 2011, 01:54:27 am
@icecream

You're weird.
Title: Re: Headshot help
Post by: Fuzzy168 on November 20, 2011, 02:40:32 pm
He's not just weird, he is the most weirdest icecream I've ever seen in my entire life.!!
Title: Re: Headshot help
Post by: icecream on November 20, 2011, 09:40:00 pm
He's not just weird, he is the most weirdest icecream I've ever seen in my entire life.!!

Looks like the people have started knowing me well.......
Title: Re: Headshot help
Post by: Fuzzy168 on November 21, 2011, 08:23:58 am
Topic locked. Case solved.  :P