Vice City Multiplayer
		VC:MP 0.3 => mIRC/pawn Scripting => Topic started by: jason on July 20, 2008, 08:29:09 pm
		
			
			- 
				hello
how can i make my own command for sansan v3?
and how can i add the !heal command in sansan v3?
			 
			
			- 
				its easy to add your own command in SanSan,
If you want a command like /c <command here> you have to change the 
on *:SIGNAL:vcmp.event.command:simply add a line (at the end):elseif ($2 == here you comand) { Here the code you want to run when the command is typed }If you want a command like !command here
you have to change the
on *:SIGNAL:vcmp.event.gamecmdsimply add a line: elseif ($2 == !here your command) { Here the code you want to run when the command is typed }
I hope that helped ;)
and how can i add the !heal command in sansan v3?
Try this:
    elseif ($2 == !heal) {
vcmp.sethp $1 100
vcmp.adminmsg %id You healed
    }
Or if you want the players to pay:
    elseif ($2 == !heal) {
var %cost = Here the amount you want it to cost
vcmp.sethp $1 100
vcmp.setmon %id $calc($vcmp.hgetmoney(%id) - %cost
vcmp.adminmsg %id You healed
    }
			 
			
			- 
				when i type !heal to hel me i die
lol
			 
			
			- 
				lolz, try this:
Command:
elseif ($2 == !heal) {
vcmp.cmd.healplayer $1
    }
Alias:
alias vcmp.cmd.healplayer {
  var %id = $vcmp.nameid($$1-)
  var %hp = 100
  var %amount = 1000
  if (%amount >= $vcmp.hgetmoney(%id)) { 
    vcmp.gametextpm %id ~a~ Not enough money...
    vcmp.adminmsg %id You need 1000!
  } 
  else {
    vcmp.adminchat ** Heal -  Player: $chr(91) $vcmp.hgetname($vcmp.nameid($1)) $chr(93)
    vcmp.adminmsg %id You healed -  Cost: 1000
    vcmp.sethp %id %hp
  vcmp.setmon %id $calc($vcmp.hgetmoney(%id) - 1000) }
}
			 
			
			- 
				ok i test it
			 
			
			- 
				 nice aport ;)
			
 
			
			- 
				it do nothing
it says: 
heal - player: []
help
			 
			
			- 
				Hi, How Can I heal 200 in hp Coz it exist in GTA-vc
			
 
			
			- 
				U can't
			
 
			
			- 
				He can  :P Just the vc-mp automatically sets his hp back to 100.
			
 
			
			- 
				
He can  :P Just the vc-mp automatically sets his hp back to 100.
Lolz, Why u post this? I allready told him :P