Vice City Multiplayer

VC:MP => General Discussion => Topic started by: GIG on June 26, 2008, 11:37:12 AM

Title: How to change the amount of start-money
Post by: GIG on June 26, 2008, 11:37:12 AM
It is time for a new topic by me  ;).

Now my question is how i can change the amount of money which you have got from the beginning (on the default server it is 2000 which i think could be a bit more). I searched for it in the Server-Config, but i did not find anything which fits.
Hope you can help me with this problem.

so already thanks for your time/help.

Greetings GIG
Title: Re: How to change the amount of start-money
Post by: GTA-Roloboy on June 26, 2008, 12:52:10 PM
You will need a script for this, if you have one, to ONLY change every time the player's money:

For GUS, join signal:
on *:SIGNAL:vcmp.join:{ dll rcondll.dll RconCommand set 4 $vcmp.getid($1) 2000 }


Just change 2000 to your money amount

Alias GetID (Always post above the Join signal) :
alias vcmp.getid {
  if ($vcmp.getid2($1) != -1) !return $vcmp.getid2($1)
  else {
    var %a = 0
    while (%a <= 50)  {
      if ($+(*,$1,*) iswm $vcmp.name(%a)) !return %a
      !inc %a
    }
    !return -1
  }
}


Data (above getid alias) :
alias vcmp.data {
  if ($1 == [join]) {
    .timer 1 1 .signal vcmp.join $remove($3,$chr(36))
  }
}
Title: Re: How to change the amount of start-money
Post by: DJ Danni on February 14, 2009, 01:31:51 PM
hi. I wan to do the same but how do i do this?
Title: Re: How to change the amount of start-money
Post by: Mattz on February 15, 2009, 04:49:58 AM
Heres a list of scripts you can use, just choose one you like.

http://forum.vicecitymultiplayer.com/index.php?board=16.0
Title: Re: How to change the amount of start-money
Post by: DJ Danni on February 15, 2009, 02:05:00 PM
I am not good in Scripting? Also i don't know how to put his in. ???