• 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 - Terminatorupgrade 2

#1
xD Good JoB
#2
Server Built in Commands??
Use GUPS
or you want to Use mIRC script Use
FBS WSV Psy GUS other
with new vcmp.dll Hope you will enjoy

GUPS = http://forum.vicecitymultiplayer.com/index.php?topic=1666.0
mIRC scripts := http://forum.vicecitymultiplayer.com/index.php?board=16.0
find there what you like :P

# New DLL mIRC VC-MP 0.3z R2 By VRocker: Download mIRC DLL!, http://x-ichile.co.cc/downloads/Scripts/dlls/mIRC/vcmp(irc).zip
# New DLL rCon mIRC VC-MP 0.3z R2: Download mIRC Rcon DLL!, http://x-ichile.co.cc/downloads/Scripts/dlls/mIRC/rcon(irc).zip
#3
ShowRoom (pawn) / Re: GUPS 1.16a
January 08, 2011, 08:38:17 AM
QuoteOther mirrors not needed.
HaLL of Mirrors
#4
ShowRoom (pawn) / Re: IRC echo
January 08, 2011, 08:34:10 AM
Where is Windows Versoin?? i want it in Windows :(
#5
ShowRoom (pawn) / Re: [GM]Blank Server
January 08, 2011, 08:31:45 AM
Failed :P  :-*
#6
mIRC/pawn Scripting / Re: how to use Psa??
January 07, 2011, 04:58:43 PM
When i Load PSA as a filter script
it crashes my server
is there any way to run pawno script on mirc r2 server??
#7
mIRC/pawn Scripting / Re: here help me
January 07, 2011, 10:55:13 AM
ya wilson use GUPS :P
#8
ya i do
#9
mIRC/pawn Scripting / Re: how to use Psa??
January 06, 2011, 12:28:00 PM
 i will pm You Bro
#10
mIRC/pawn Scripting / how to use Psa??
January 05, 2011, 01:57:35 PM
How to use psa I got A problem
when i load psa.amx as a filter Script

filterscripts psa
then when i turn on my server it Crashes always :( ???
and when i load psa as a Gamemode it load successfully But there are no Scripts :(
What is Solution Guys!
#11
ah you Was on my server asking to make Me admin hmm..Today on GanG.City?
#12
mIRC/pawn Scripting / Re: Help!!!
January 02, 2011, 08:41:57 AM
Quoteeasy to fix it.
format your os.
use Ubunto.
format again, put Win7 os.
format again,and put Win Xp.

ofc will work.

OH RALE WEY!

Terminatorupgrade2 REPLY STYLE YO

You are Really Dumb AssHole Fucking ***** Noob






I m a asking About to fix this
Quote#include <a_vcmp>
#include <core>
#include <float>
#pragma tabsize 0
#define COLOR_GREY 0xAFAFAFAA
#define COLOR_GREEN 0x04A36BFF
#define COLOR_RED 0xAA3333AA
#define COLOR_YELLOW 0xFFFF00AA
#define COLOR_WHITE 0xFFFFFFAA
#define RED 0xF0182DFF
#define GREEN 0x0FCD18FF
#define WHITE 0xFFFDFDFF
#define ORANGE 0xF6A113FF
#define PURPLEE 0xD22FBCFF
#define OriginalGreen 0x04A36BFF
#define BLUE 0x377DFFFF
#define INACTIVE_PLAYER_ID 255

new pId[255];

enum keycardspawns
{
    Float:kex,
    Float:key,
    Float:kez,
   pid[255],
}

new RandomPlayerSpawns[][keycardspawns] =
{
   {-984.1637,270.5744,8.2461,pId[1]},
   {-1292.9711,79.6803,26.6573,pId[2]},
   {-1244.8879,80.1344,11.8800,pId[3]},
   {-1145.0602,-5.7723,11.4168,pId[4]},
   {-1260.7268,-1061.9330,13.9402,pId[5]},
   {-1670.2209,-61.8558,14.3627,pId[6]},
   {-308.1495,-434.2157,9.2112,pId[7]}
};

public OnGameModeInit()
{
new rand = random(sizeof(RandomPlayerSpawns));
AddStaticPickup(1,508,RandomPlayerSpawns[rand][kex],RandomPlayerSpawns[rand][key],RandomPlayerSpawns[rand][kez]);

return 1;
}

public OnPlayerText(playerid, cmdtext[])
{
   new cmd[256];
   new tmp[256];
   new szMsg[256];
   new idx, newvar;
   new Float:x, Float:y, Float:z;
   
   if(!strcmp(cmdtext,"!keycard",true) == 0)
   {
   if(pId[1])
   {
    SendClientMessageToAll(COLOR_WHITE,"The keycard is rumored to be near A Underground Entrance");
    }
    else if(pId[2]) {
    SendClientMessageToAll(COLOR_WHITE,"The keycard is rumored to be near Little-Haiti");
    }
    else if(pId[3]) {
    SendClientMessageToAll(COLOR_WHITE,"The keycard is rumored to be near Junkyard");
    }
    else if(pId[4]) {
    SendClientMessageToAll(COLOR_WHITE,"The keycard is rumored to be near Junkyard");
    }
    else if(pId[5]) {
    SendClientMessageToAll(COLOR_WHITE,"The keycard is rumored to be near Escobar Int.");
    }
    else if(pId[6]) { SendClientMessageToAll(COLOR_WHITE,"The keycard is rumored to be near Army Base");
    }
    else if(pId[7]) { SendClientMessageToAll(COLOR_WHITE,"The keycard is rumored to be near Alvin's Villa");
    }
    }
    return 1;
   }
   
public OnPickedUp(pickupid, playerid)
{
   if(pickupid == 1)
   {
   new money; money = GetPlayerMoney(playerid);
   SetPlayerMoney(playerid,money+50000);
   new string[256],pName[MAX_PLAYER_NAME];
   GetPlayerName(playerid,pName,sizeof(pName));
   format(string,sizeof(string),"Congratz!!! %s has found the keycard!!!",pName);
   SendClientMessageToAll(COLOR_WHITE,string);
   return 1;
   }
/////////////////////////////////////////////////////////////////////////////////
   

new string[256], cmd = strtok(cmdtext, idx);
strtok(const string[], &index)
{
   new length = strlen(string);
   while ((index < length) && (string[index] <= ' ')){ index++; }
   new offset = index;
   new result[20];
   while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
   {
      result[index - offset] = string[index];
      index++;
   }
   result[index - offset] = EOS;
   return result;
}
isnumeric(const string[])
{// mike's function
   for (new i = 0, j = strlen(string); i < j; i++) { if (string > '9' || string < '0') return 0; }
   return 1;
}

stock Ratio(Float:input1,Float:input2)
{
    if(input1 > 0 && input2 > 0)
    {
      new Float:output;
      output = input1 / input2;
        return float:output;
    }
    else return false;
}

stock GetDistanceBetweenPlayers(playerid,playerid2)
{
        new Float:x1,Float:y1,Float:z1,Float:x2,Float:y2,Float:z2;
        new Float:tmpdis;
        GetPlayerPos(playerid,x1,y1,z1);
        GetPlayerPos(playerid2,x2,y2,z2);
        tmpdis = floatsqroot(floatpower(floatabs(floatsub(x2,x1)),2)+floatpower(floatabs(floatsub(y2,y1)),2)+floatpower(floatabs(floatsub(z2,z1)),2));
        return floatround(tmpdis);
}
#13
mIRC/pawn Scripting / Help!!!
January 01, 2011, 09:58:45 AM
b_d O_o
...
Can any one give my pawno Keycard Fixed Version
#14
Thanks GOOD JOB ;)

Port Forward is Recommended  :-[
#15
VC:MP Clans / Re: [DU] - Double-U Discussion Topic
December 24, 2010, 09:39:49 AM
O_o  :o
Marry Xmax