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 - VerceTTi

Pages: [1]
1
mIRC/pawn Scripting / Re: Help for timing In announce message
« on: March 27, 2012, 05:47:50 pm »
Is it possible for doing in notepad NC? if you don't mind  :D

2
mIRC/pawn Scripting / Re: Help for timing In announce message
« on: March 26, 2012, 05:38:21 pm »
NC you helped good but i still did'nt get it. Can you make it for me if possible

3
mIRC/pawn Scripting / Re: Help for timing In announce message
« on: March 25, 2012, 03:41:06 pm »
Guyz i mean that time will automatically forwarding in "GameTextForAllBottom" like

01:01
01:02
01:03
01:04

when 1 over from 01:01 to 50 then it starts 02

02:01
02:02
02:03
02:04

But Only in "GameTextForAllBottom" ,see this video  http://www.youtube.com/watch?v=laWLTnSuOnY, i want like this in this video

4
mIRC/pawn Scripting / Re: How to add loc on player death.....
« on: March 21, 2012, 01:30:55 pm »
well, you can also do this

[pawn]public GetPlayerLocation(playerid)
{
   new a=0,b=1,c=0;
      new szMsg[256];
      format(szMsg,sizeof(szMsg),"Vice-City");
   while (c!=120)
    {
      if (IsPlayerInArea(playerid,area[a],area))
      {
         szMsg=areas(c);
            break;
      }
      a=(a+2);
      b=(b+2);
      c++;
   }
   return szMsg;
}[/pawn]

Public Player in Area

[pawn]stock IsPlayerInArea(playerid,Float:XCoords[],Float:YCoords[])
{
   new a=0,b=0;
   while(a!=15)
   {
       if (YCoords[a] != 0.000000 && XCoords[a] != 0.000000)
      {
           b++;
        }
        a++;
   }
   new u = b-1, Intersect = 0, Float:X, Float:Y, Float:Z; GetPlayerPos(playerid,X,Y,Z);
   for(new v = 0; v < b; v++)
   {
      if((YCoords[v] < Y && YCoords >= Y) || (YCoords < Y && YCoords[v] >= Y))
      {
         if(XCoords[v] + (Y-YCoords[v]) / (YCoords - YCoords[v]) * (XCoords - XCoords[v]) < X)
         {
            Intersect++;
         }
      }
      u = v;
   }
   return Intersect&1;
}[/pawn]

But i think what stormeus said was more easy and better than this.

5
mIRC/pawn Scripting / Re: Help for Timing In Announce Message
« on: March 09, 2012, 12:11:42 pm »
what do you mean by announce...
There is only news system.....
ufffffff should i have to say full details: /c ann [msg] or /c ann2 [msg] i wanna know that how should we set timer in announce ( /c ann2 [msg] ) and plz dont try to say this "it is impossible in pawn" IT IS POSSIBLE see this video if you did'nt believe http://www.youtube.com/watch?v=laWLTnSuOnY

6
mIRC/pawn Scripting / Help for timing In announce message
« on: February 26, 2012, 10:41:05 am »
How can we set Timing in announce msg for pawn like it was in ULK open challenge in the past

Pages: [1]