• Welcome to Vice City Multiplayer.
 
Menu

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 Menu

Messages - Force

#286
Videos and Screenshots / Re: 0.4 preview video
June 06, 2008, 03:11:33 PM
Really looking forward to this, can't wait for the beta and the release :D
#287
General Discussion / Re: A must be for 0.4
June 04, 2008, 02:11:37 AM
Exactly what I thought  :-\
#288
General Discussion / Re: Vehicle Colours
May 31, 2008, 03:55:12 PM
Thanks  ;D
#289
General Discussion / Vehicle Colours
May 31, 2008, 01:18:24 PM
Hey,

Not sure if this is the right place or not but does anyone know whether or not there is a list of all the colours for the cars? The only one I know is 50 50 which is blue.  :-\

If there please could you link me?

Cheers,

[SDT]F_T_F0RC3
#290
VC:MP Clans / Re: VC:MP clans
May 13, 2008, 10:03:40 PM
SDT Clan (Superior Driving Team)

Country: International, engish speakers preffered

Leader(s): F_T_F0RC3

Co. leader(s): Orpheus

Clan tag: [SDT]

Homepage: s1.zetaboards.com/SDT_VC_MP_Clan

Clan server: 88.107.55.79:5192

IRC channel: GTANet's server - #SDT

Other info: We are a clan that is looking for experienced drivers and fighters but we mainly revolve around driving.
#291
mIRC/pawn Scripting / Re: Four questions
May 03, 2008, 11:08:01 PM
Quote from: Juppi on January 16, 2008, 03:46:40 PM
I dont comment the first question, those who play more can tell their opinion.

For 2 and 3 i have simple solutions from old Ka server script, which uses the aliases from GUS (aliases are from GUS 9.00, but i think they should work in 10.00, too)

Auto-warn/kick code can be easily made using the alias vcmp.warn. The same alias is used in command !warn, so after getting three warns the player gets kicked. This should give you auto-warn after every DB:

on *:SIGNAL:vcmp.kill:{
  var %weapon = $iif($1 != $null,$1,Unknown) ;i think this is aready there; if not add it

...

    if (%weapon == 42) {    ;42 is the identifier number for drivebying
      vcmp.warn %killer Server Drive-bying

;this warns the killer, Server is the name of admin who gave the warn and Drive-bying is the reason for warn

    }
}


This doesnt include the warn given to teamkillers. In GUS 9 there aren't defined event for teamkilling, so we have to add it to alias vcmp.data (check if its in version 10, if not just add)

alias vcmp.data {
.....

  elseif ($1 == [teamkill]) {
    .signal vcmp.teamkill $5 $vcmp.getdeathinfo($4).name $vcmp.getdeathinfo($2).name
  }

.....
}


This makes a signal called vcmp.teamkill every time someone teamkills. Now we need to create the action for teamkilling. You can use the same warning system as in vcmp.kill, or add another, like direct kick after TK.

on *:SIGNAL:vcmp.teamkill:{
  var %weapon = $iif($1 != $null,$1,Unknown)
  var %victim = $iif($2 != $null,$vcmp.getid($2),Unknown)
  var %killer = $iif($3 != $null,$vcmp.getid($3),Unknown)

;these has to be here, this is new thing and needs its own definitions

  vcmp.warn %killer Server Teamkilling ; or just vcmp.kick %killer

}


If you dont want to mix the warns by !warn command and the warns from DB/TK, create new alias for drive-by warning. Easiest way is to copy all aliases related to vcmp.warn, and rename them eg. to vcmp.warn2.



3. can be quite similar, just create a ban system similar to the warn system. Put it inside on *:SIGNAL:vcmp.kill: and on *:SIGNAL:vcmp.teamkill:. Instead of DB's %weapon code just use the codes from the weapons that are forbidden, and instead of warning, use alias vcmp.ban.

Hope this helps  ;)

Ask if theres something to ask, there may also be typos  :P

I have been looking for that sort of thing :) Where in the standard GUS 9 script would it go?

Also, how do I make a killingspree script and do something like /announce or an announce command for a killingspree etc?

Hope that is clear enough?

Cheers