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.


Messages - Terminatorupgrade 2

Pages: [1] 2 3 ... 7
1
mIRC/pawn Scripting / Re: How to change time?
« on: November 01, 2011, 08:47:55 pm »
i wish i could go into future where 0.4 is released :)  . sup guys missed your friend ?
Login With Your /admin <rcon_pass>
then do /sethr < hr : min>
example if you want to set 9:00 am
then /sethr 09:00
this could be done

excuse me mr it has a mistakes it is [pawn]/sethr 09[/pawn] not /sethr 09:00 be carefull  next time :)

2
Support / Re: I can not install Commandos in 0.3zR2 do not know how
« on: January 08, 2011, 10:41:09 am »
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
mIRC/pawn Scripting / Re: how to use Psa??
« on: January 07, 2011, 06: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??

4
mIRC/pawn Scripting / Re: here help me
« on: January 07, 2011, 12:55:13 pm »
ya wilson use GUPS :P

5
mIRC/pawn Scripting / Re: how to use Psa??
« on: January 06, 2011, 02:28:00 pm »
 i will pm You Bro

6
mIRC/pawn Scripting / how to use Psa??
« on: January 05, 2011, 03: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!

7
mIRC/pawn Scripting / Re: Help!!!
« on: January 02, 2011, 10:41:57 am »
Quote
easy 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);
}

8
mIRC/pawn Scripting / Help!!!
« on: January 01, 2011, 11:58:45 am »
b_d O_o
...
Can any one give my pawno Keycard Fixed Version

9
Thanks GOOD JOB ;)

Port Forward is Recommended  :-[

10
mIRC/pawn Scripting / Re: help pawno
« on: December 24, 2010, 11:38:24 am »
Same Problem with me.but i have Auto Ban Hax system and auto kick ping sys if u want it Reply

11
mIRC/pawn Scripting / Psy Script Help
« on: December 24, 2010, 08:15:14 am »
Help .
 How can i add props in psy script and there are Wrong Car Id's .eg like when i sit in Cheetha its says

 id 24 owner none shared  none car PCJ 600
WTF PCJ 600. its bug please HELp

12
Support / Re: Need RPG Scripts ...........
« on: December 21, 2010, 09:54:39 pm »
mIRC or Pawno? :o i had mIRC

13
mIRC/pawn Scripting / Spree in Pawno
« on: December 21, 2010, 12:23:45 am »
Please any one Code US for Spree Count in Pawno?

14
mIRC/pawn Scripting / Re: Speedometer In gups help me :/
« on: December 19, 2010, 04:07:20 pm »
I searched But there was no Code :-[
how to make autodrown -killing in bank and spree?
+

15
mIRC/pawn Scripting / Re: Head Shoot Reward In Pawno vcmp
« on: December 19, 2010, 04:06:34 pm »
i need Code Dude Please .. :-[

 ??? ???
Quote
enum sInfo
{
   Countx,
   Echo,
   Rewardforhead,
   Drownforhelikill,
   Drownfordriveby
}

if(reason == 6) {
         if (ServerInfo[0][Rewardforhead] == 1) {
            format(string,256,"Head kill Reward:[ %s ] Reason:[ HEAD SHOOT ]",gPlayers[killerid]);
            SendClientMessageToAll(COLOR_GREEN,string);
            IncPlayerHandCash(killerid,1000);
            GameTextForPlayer(playerid,"Head Shot Reward",1000,1);
            

i know it is wrong but i need Code

Pages: [1] 2 3 ... 7