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.


Topics - [Saint]

Pages: [1]
1


Vice City Life: 0.1b R2-9 by Saint Games (c) 2010-2012.

take any one if you need it...

Full Download -> http://www.solidfiles.com/d/24a77f4098/

Admin Account here:

VC_Pawn_Server\scriptfiles\Accounts

file: Admin.ini
password: 123456

2
General Discussion / [Split] Someone is crashing my server
« on: April 07, 2013, 01:54:52 pm »
today on my beta test server join Vrocker and suggested I buy it for my hosting server, as well as threatened shutdown my server if I refuse to buy hosting







WTF ?????

Vrocker fuck you man! and you can kiss me ass, i not never pay you for hosting!

3
Support / VC-MP 0.4 Multi-Language Support (UNICODE)
« on: December 11, 2012, 03:08:22 pm »
I think that it must necessarily be added, as it is in SA-MP, if you think that it is not possible, look at my picture, i added it in vc-mp 0.1  :o


4
mIRC/pawn Scripting / mIRC
« on: November 28, 2012, 12:25:00 am »
where i can get info for VC-MP 0.3z R2 (mIRC) Server functions/scripts ?

5
Videos and Screenshots / 0.4
« on: November 27, 2012, 09:28:56 am »


very nice) I would like to test how it works)  ::)


6
GetVehicleModel + GetVehicleName for VC-MP 0.3z R2 by Saint Games

Code: [Select]
//==============================================================================

new VehiclesNames[][] =
{
   "Landstalker", // 130
   "Idaho", // 131
   "Stinger", // 132
   "Linerunner", // 133
   "Perennial", // 134
   "Sentinel", // 135
   "Rio", // 136
   "Firetruck", // 137
   "Trashmaster", // 138
   "Stretch", // 139
   "Manana", // 140
   "Infernus", // 141
   "Voodoo", // 142
   "Pony", // 143
   "Mule", // 144
   "Cheetah", // 145
   "Ambulance", // 146
   "FBI Washington", // 147
   "Moonbeam", // 148
   "Esperanto", // 149
   "Taxi", // 150
   "Washington", // 151
   "Bobcat", // 152
   "Mr Whoopee", // 153
   "BF Injection", // 154
   "Hunter", // 155
   "Police", // 156
   "Enforcer", // 157
   "Securicar", // 158
   "Banshee", // 159
   "Predator", // 160
   "Bus", // 161
   "Rhino", // 162
   "Barracks OL", // 163
   "Cuban Hermes", // 164
   "Helicopter", // 165 (íåîñèçàåìûé ïîëèöåéñêèé âåðòîë¸ò)
   "Angel", // 166
   "Coach", // 167
   "Cabbie", // 168
   "Stallion", // 169
   "Rumpo", // 170
   "RC Bandit", // 171
   "Romero's Hearse", // 172
   "Packer", // 173
   "Sentinel XS", // 174
   "Admiral", // 175
   "Squalo", // 176
   "Sea Sparrow", // 177
   "Pizza boy", // 178
   "Gang Burrito", // 179
   "???", // 180 (none)
   "???", // 181 (none)
   "Speeder", // 182
   "Reefer", // 183
   "Tropic", // 184
   "???", // 185 (none)
   "Yankee", // 186
   "Caddy", // 187
   "Zebra Cab", // 188
   "Top Fun", // 189
   "Skimmer", // 190
   "PCJ-600", // 191
   "Faggio", // 192
   "Freeway", // 193
   "RC Baron", // 194
   "RC Raider", // 195
   "Glendale", // 196
   "Oceanic", // 197
   "Sanchez", // 198
   "Sparrow", // 199
   "Patriot", // 200
   "Love Fist", // 201
   "Coast Guard", // 202
   "Dinghy", // 203
   "Hermes", // 204
   "Sabre", // 205
   "Sabre Turbo", // 206
   "Phoenix", // 207
   "Walton", // 208
   "Regina", // 209
   "Comet", // 210
   "Deluxo", // 211
   "Burrito", // 212
   "Spand Express", // 213
   "Marquis", // 214
   "Baggage", // 215
   "Kaufman Cab", // 216
   "Maverick", // 217
   "VCN Maverick", // 218
   "Rancher", // 219
   "FBI Rancher", // 220
   "Virgo", // 221
   "Greenwood", // 222
   "Cuban Jetmax", // 223
   "Hotring Racer #1", // 224
   "Sandking", // 225
   "Blista Compact", // 226
   "Police Maverick", // 227
   "Boxville", // 228
   "Benson", // 229
   "Mesa Grande", // 230
   "RC Goblin", // 231
   "Hotring Racer #2", // 232
   "Hotring Racer #3", // 233
   "Bloodring Banger #1", // 234
   "Bloodring Banger #2", // 235
   "Police Cheetah" // 236
};

//==============================================================================

new VehicleModel[MAX_VEHICLES]; // MAX_VEHICLES = 254 from include a_vcmp.inc
new Vehicle_ID[MAX_VEHICLES];

stock AddStaticVehicleFix(vehicleid, modelid, Float:spawn_x, Float:spawn_y, Float:spawn_z, Float:z_angle, color1, color2)
{//-----------------------------------------------------------------------------
// printf("AddStaticVehicleFix(vehicleid: [%d], modelid: [%d])", vehicleid, modelid);
    VehicleModel[vehicleid] = modelid; //
  Vehicle_ID[vehicleid] = vehicleid;
// printf("AddStaticVehicleFix(Vehicle_ID[%d]:[%d], VehicleModel[%d]:[%d]", vehicleid, Vehicle_ID[vehicleid], vehicleid, VehicleModel[vehicleid]);
AddStaticVehicle(VehicleModel[vehicleid], spawn_x, spawn_y, spawn_z, z_angle, color1, color2);
}//-----------------------------------------------------------------------------

//==============================================================================

stock GetVehicleModelFix(vehicleid)
{//-----------------------------------------------------------------------------
// return 0 if vehicle create with standart function AddStaticVehicle (Eng)

return VehicleModel[Vehicle_ID[vehicleid]];

}//-----------------------------------------------------------------------------

//==============================================================================

stock GetVehicleName(vehicleid)
{//-----------------------------------------------------------------------------
new vehname[64];
if (GetVehicleModelFix(vehicleid) != 0)
    {//-------------------------------------------------------------------------
format(vehname, sizeof(vehname), "%s", VehiclesNames[GetVehicleModelFix(vehicleid) - 130]);
}//-------------------------------------------------------------------------
else
{//-------------------------------------------------------------------------
    format(vehname, sizeof(vehname), "dont know");
}//-------------------------------------------------------------------------

return vehname;
}//-----------------------------------------------------------------------------

//==============================================================================

the functions GetVehicleModelFix + GetVehicleName worked, need to create transport AddStaticVehicleFix

[pawn]
public OnGameModeInit()
{
   new vehicleid = 1;
   
   AddStaticVehicleFix(vehicleid++, 150, -1466.0442,  -813.6917, 14.4544, 194.7963,  6,  6); // id:  1 // Taxi on Air
   AddStaticVehicleFix(vehicleid++, 150, -1443.8861,  -835.5981, 14.5113, 256.3380,  6,  6); // id:  2 // Taxi on Air
   AddStaticVehicleFix(vehicleid++, 150, -1427.6191,  -835.4893, 14.5456, 285.4997,  6,  6); // id:  3 // Taxi on Air
   AddStaticVehicleFix(vehicleid++, 150, -1405.0720,  -813.2555, 14.5465, 346.7166,  6,  6); // id:  4 // Taxi on Air
[/pawn]

how to use

[pawn]
//------------------------------------------------------------------------------
   if (strcmp(cmd, "vehinfo", true) == 0)
   {//-------------------------------------------------------------------------
       if (IsPlayerAdmin(playerid) || PlayerInfo[playerid][pAdmin] != 0)
      {//---------------------------------------------------------------------
         if (IsPlayerInAnyVehicle(playerid))
         {//-----------------------------------------------------------------
             new Float:health;
             new Float:xX, Float:yY, Float:zZ;
             GetPlayerPos(playerid, xX, yY, zZ);
             GetVehicleHealth(GetPlayerVehicleID(playerid), health);
             
            SendClientMessage(playerid, COLOR_RED,"-----------------------------------------");
            format(str, sizeof(str), " Vehicle Name: [%s]", GetVehicleName(GetPlayerVehicleID(playerid)));
            SendClientMessage(playerid, COLOR_GREEN, str);
               format(str, sizeof(str), " Vehicle   ID: [%d]", GetPlayerVehicleID(playerid));
               SendClientMessage(playerid, COLOR_GREEN, str);
             format(str, sizeof(str), " Model     ID: [%d]", GetVehicleModelFix(GetPlayerVehicleID(playerid)));
            SendClientMessage(playerid, COLOR_GREEN, str);
            format(str, sizeof(str), " Veh   Health: [%.1f]", health);
               SendClientMessage(playerid, COLOR_GREEN, str);
            format(str, sizeof(str), " Position: PosX: [%.1f]  PosY: [%.1f]  PosZ: [%.1f]", xX, yY, zZ);
               SendClientMessage(playerid, COLOR_GREEN, str);
            SendClientMessage(playerid, COLOR_RED,"-----------------------------------------");
         }//-----------------------------------------------------------------
         else
         {//-----------------------------------------------------------------
            SendClientMessage(playerid, COLOR_RED, "You are not in Vehicle");
         }//-----------------------------------------------------------------
      }//---------------------------------------------------------------------
      else
      {//---------------------------------------------------------------------
         SendClientMessage(playerid, COLOR_RED, "SERVER: Error! Unknow command!");
      }//---------------------------------------------------------------------
      return 1;
   }//-------------------------------------------------------------------------
//------------------------------------------------------------------------------
[/pawn]

7
mIRC/pawn Scripting / VC-MP 0.3z R2 Limits
« on: November 17, 2012, 04:44:24 pm »
http://thijn.vrocker-hosting.co.uk/VCWiki/index.php/AddStaticPickup

How much limit?

need create VC-MP 0.3z R2 Limits List same as here http://wiki.sa-mp.com/wiki/Limits

8
[FS] ConsoleCommands System for VC-MP 0.3z R2 by Saint Games (c) 2010-2012.

New updated version



Download http://www.solidfiles.com/d/5129c8a7d6/

9
Support / VC-MP 0.3z R2 Client debug cmd
« on: November 13, 2012, 03:41:38 pm »
i can learn about this in more detail, what of show client information?


10
Videos and Screenshots / claude speed in Vice City (VC-MP)
« on: November 12, 2012, 11:35:10 pm »
 ::) claude speed in VC-MP :)









 ;D

11
General Discussion / VCMP New Loading Screen
« on: November 12, 2012, 10:48:33 pm »


my old Loading Screen vcmp

download http://www.solidfiles.com/d/fe16/

 :)

12
Videos and Screenshots / Stunts in VC-MP
« on: July 30, 2012, 09:46:13 pm »
[LLS] Malboro III  stunts on Vice City Life Server http://www.youtube.com/watch?v=sbd11xiaO4M&feature=youtu.be

13
Biker Club


Strip Club


Malibu Club




Vice City Life Server 83.167.24.209:8888 Join for Test



14
Servers / [ENG/RUS] Vice City Life [vk.com/vicecitymultiplayer]
« on: July 16, 2012, 09:39:29 am »



Vice City Life Server
83.167.24.209:8888


by Saint Games © 2010-2013
for VC-MP 0.3z R2 (Pawn Server)



Vice City Life Server Banner #1


Code: [Select]
[url=http://www.game-state.eu/83.167.24.209:8888/][img]http://www.game-state.eu/83.167.24.209:8888/FFFFFF/FF9900/560x95.png[/img][/url]

Vice City Life Server Banner #2


Code: [Select]
[url=http://www.game-state.eu/83.167.24.209:8888/][img]http://www.game-state.eu/83.167.24.209:8888/FFFFFF/FFFFFF/n-560x95.png[/img][/url]

Vice City Life Server Banner #3


Code: [Select]
[url=http://www.game-state.eu/83.167.24.209:8888/][img]http://www.game-state.eu/83.167.24.209:8888/FFFFFF/FFFFFF/350x20.png[/img][/url]


Hidden Packages

All Hidden Packages from SinglePlayer Game
Vice City Life Server: 83.167.24.209:8888



Vice City Life Server: 83.167.24.209:8888


Biker Club


Strip Club


Malibu Club




Vice City Life Server 83.167.24.209:8888 Join for Test




15
All Hidden Packages from SinglePlayer Game
Vice City Life Server: 83.167.24.209:8888



Vice City Life Server: 83.167.24.209:8888

Pages: [1]