• Welcome to Vice City Multiplayer.
 

How to change the amount of start-money

Started by GIG, June 26, 2008, 11:37:12 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

GIG

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

GTA-Roloboy

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))
  }
}

DJ Danni

hi. I wan to do the same but how do i do this?

Mattz


DJ Danni

I am not good in Scripting? Also i don't know how to put his in. ???