• 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 - Skirmant

#226
mIRC/pawn Scripting / Re: Skins Locations
August 13, 2009, 09:40:38 AM
Okay, I will give you a small tutorial.

1. Go to the area you want your skin to spawn into and type /s
2. Check out your Vice City folder and find a file named "vc-mp_saved_coords"
3. In there you will find the cords that you saved ingame. 
4. Copy the cords and paste them in your "config.ini" file near other skin locations.
5. Now edit the first 2 zeros of the code (0 - Team color) (0 - Skin model)
6. Save the changes in your config.ini and you're done :)
#227
Script Showroom / Re: /c rob command
August 12, 2009, 10:27:51 AM
#228
Script Showroom / Re: /c rob command
August 11, 2009, 08:29:46 AM
Depends how you put it... The alias part has to be addend near other aliases. Just put the command after /c register. That should work :)
#229
mIRC/pawn Scripting / Re: Skins Locations
August 10, 2009, 05:23:10 PM
Um... Can't you do it your self? Its fairly easy, just go to the location you want your skin to spawn at and type "/s" . After that you should find a text document named "vc-mp_saved_coords" in your Vice City directory with the saved cords. 
#230
Script Showroom / Re: /c rob command
August 10, 2009, 05:17:44 PM
I think its pretty clear its for GUS  :P
#231
Quote from: [AoD]NC on March 12, 2009, 06:14:54 PM
3. Flying in-game
I know, it's a vcmp bug. U are going and then u fly in the air and can't stop. But can scripts do this too? In the last time i saw, that on my test server, where are other players testing the scripts, most of them after some time are flying in the air. Im too, but not so often ;p.

Thxx for any post here  :P

Um... I have no idea how to script this, but you can do this very easily by going to any ammu-nation and buying the same weapon at least 10 times in a row. Or... Click "esc" and explore the graphics and sound setting, after that return in game and woah! "I believe I can fly"  ;D
#232
Script Showroom / /c rob command
August 09, 2009, 03:42:30 PM
Hello, Since this command was abused in my server i decided to remove it.
Anyways, here you go.

Command:

if ($2 == rob) {
   if (Police Station (Washington-Beach) isin $vcmp.area(%b)) vcmp.msg %id It wouldn't be smart to rob in this area!
   elseif (!$3) vcmp.msg %id /c rob <name>
   elseif (%a == -1) vcmp.msg %id No such player online!
   elseif ($vcmp.distance(%id,%a) > 5) vcmp.msg %id You need to be atleast 5 meters near the person to rob him.
   elseif ($vcmp.vehicle(%a,id) != 0) vcmp.msg %id You can't rob a driver.
   elseif ($vcmp.cash(%a) < 50) vcmp.msg %id That guy is broke! Don't bother robbing him...
   else {
     vcmp.msg %id Robbing $vcmp.name(%a) $+ , please wait...
     vcmp.msg %a $vcmp.name(%b) is robbing you! Get away now!
     vcmp.announce %a $chr(2) $chr(2) $chr(2) $chr(2) $chr(2) ~w~ *THIEF ALERT *
     .timer 1 10 vcmp.rob %a %b
}
}



Alias:

alias vcmp.rob {
 if ($vcmp.distance($1,$2) > 5) {
   vcmp.msg $2 You failed to rob $vcmp.name($1)
   vcmp.msg $1 You succesfuly avaded from getting robbed!
 }
 elseif ($vcmp.cash($1) < 50) {
   vcmp.msg $2 You failed to rob $vcmp.name($1)
   vcmp.msg $1 You succesfuly avaded from getting robbed!
 }
 else {
   set %c $rand(1,50)
   vcmp.cash- $1 %c
   vcmp.cash+ $2 %c
   vcmp.msg $2 You succsesfuly robbed $vcmp.name($1) and got $ $+ %c $+ !
   vcmp.msg $1 Sorry man, but you just got robbed!
}
}

#233
mIRC/pawn Scripting / Re: Self-Heal..
August 09, 2009, 03:32:52 PM
Just Make an alias like this:

alias vcmp.autoheal {
 If ($vcmp.hp($1) =< 50) vcmp.sethp $1 100
}


And put:

.timer 0 30 vcmp.autoheal Id%  

In the join signal.

That's all :)