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

Pages: [1]
1
Off topic / Re: Say something about the user above you.
« on: February 19, 2011, 05:34:26 pm »
The person above me is a homo.

2
Member's Introduction / Re: Harro
« on: February 19, 2011, 05:33:00 pm »
Ruskie?

4
Off topic / Re: Let's write the story!
« on: February 12, 2011, 05:06:52 pm »
of the big...

5
Moderator Applications / Re: PL0X ADMEN
« on: February 12, 2011, 07:20:11 am »
Idk If Jane allowes me to decide .

But I say Never.



you iz doin it.

6
mIRC Scripting help / Mirc functions...
« on: February 11, 2011, 08:17:11 pm »
Hello, recently ive started Mirc scripting, it isnt hard but i do have a problem:
I do not know any functions so if you can provide me with a list of them, i would be thrilled!

thank you,
Vertical / Code Red.

7
Off topic / Favorite music Genre
« on: February 11, 2011, 05:23:30 pm »
What is your favorite music ganre?
you can also provide a few videos to describe your taste a little better  ;)


i enjoy listening to: Rap/Hip hop, Rock/Metal , Reggea , House , RnB/Soul and Country,

here are some of the music ive been listening lately:

Ce loo green - **** you:
http://www.youtube.com/watch?v=oDrZNb4Sc_g

Bone thugs n harmony - The crossroads:
http://www.youtube.com/watch?v=y-JmZ9ADhYg

Dio - Holy diver:
http://www.youtube.com/watch?v=2lvs2FzF64o

Please have a pleasant discussion.

8
Off topic / Re: Favorite sites
« on: February 11, 2011, 01:07:37 pm »

9
Off topic / Re: I Spy
« on: February 11, 2011, 01:06:40 pm »
That trucktor or whatever that constructions vehicle name is.

10
Member's Introduction / Re: Hi
« on: February 10, 2011, 08:57:44 am »
I feel like ive seen you somewhere.

11
Member's Introduction / My name is Vertical.
« on: February 10, 2011, 08:55:17 am »
Hello, some of you might know me and some of  you might not,
if you know me and you talk to me then <3
if not here are some facts about me:

My other nickname is: Code_Red.
I am Russian.
I am an advanced pawn scripter, currently studying irc.
I eat sunflowers and potatoes all day.
If you act like a fag around me you will be annoyed.

That is all, please leave your hat0r comments below.
Have a nice day.

12
Pawn Code Snippets / Re: Detect if player is flying
« on: February 10, 2011, 08:50:32 am »
Its only Detecting The Flying Hacks ? Dosen't it detect the Airbreak ?

It detects if a player is in a flying vehicle such as a heli or a plane.

13
Pawn Code Snippets / Re: Detect if player is flying
« on: February 10, 2011, 05:50:25 am »
lol thought you meant you made something against airbreak, however i still like it.

14
Pawn Code Snippets / Re: a few stocks i made.
« on: February 09, 2011, 04:58:22 pm »
Thanks for the support.  :)

15
Pawn Code Snippets / a few stocks i made.
« on: February 09, 2011, 10:52:35 am »
I found theese stocks quite useful at times, i hope you enjoy!

GetClosestPlayer(playerid,range);
Description: Gets the closest player to a range amount of your choise (50 is defult) requires PlayerToPoint!


Quote
stock GetClosestPlayer(playerid,range = 50)
{
new splayer,jon;
if(IsPlayerConnected(playerid))
{
jon = MAX_PLAYERS * 50;
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid,x,y,z);
for(new r = range; r > 0; r--) {
for(new i = 0; i < MAX_PLAYERS; i++) {
if(i==playerid)  continue;
if(PlayerToPoint(r, i, x, y, z))
{
jon--;
splayer = i;
}
}
}
if(jon == MAX_PLAYERS * 50) splayer = INVALID_PLAYER_ID;
}
return splayer;
}

ReturnUser(name,playerid);
Description: My version of the ReturnUser function, it is easier to find the user using this since it checks if its ANYWHERE in the name, and not just from the beggining, for example:

players online:
0.Edd
1.Johny
2.Gai
3.Homo
4.Vertical
if i type in "Omo" it will return 2, if i type in "Ical" it will return 4 etc.

Quote
ReturnUser(const playername[], user = INVALID_PLAYER_ID)
{
      new i;
      new hasmultiple=-1;
      new ourplayer = -1;
      new tmpuname[MAX_STRING];
      for (i=0;i<MAX_PLAYERS;i++)
      {
      if (IsPlayerConnected(i))
      {
      GetPlayerName(i,tmpuname,sizeof(tmpuname));
      if (strfind(tmpuname,playername,true) != -1)
      {
         hasmultiple++;
         ourplayer = i;
      }
      if (hasmultiple>0)
      {
      SendClientMessage(user,ARED,"More Then One Player Found, Please Be More Accurate!");
      return INVALID_PLAYER_ID;
      }
      }
      }
      if(IsNumeric(playername) && IsPlayerConnected(strval(playername)))
      {
      hasmultiple++;
      ourplayer = strval(playername);
      if (hasmultiple>0)
      {
      SendClientMessage(user,0xA80000FF,"More Then One Player Found, Please Be More Accurate!");
      return INVALID_PLAYER_ID;
      }
      }
      return ourplayer;
}
i will release some more soon,

NOTE: b4  releasing them i changed a few things to make them more comfortable for the public, if you find any bugs (which i doubt you will) please contact me.

if you have any requests, dont hasitate to ask.  ;)

Pages: [1]