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

Pages: [1]
1
mIRC Scripting help / RSS Feed
« on: February 23, 2011, 02:59:38 am »
Is it possible to have a bot say something if it found a RSS feed has updated? I need a bot for irc that does this for my website.

:D

2
Off topic / Re: Say something about the user above you.
« on: February 23, 2011, 02:54:35 am »
the person above me has a scary signature

3
Moderator Applications / Re: PL0X ADMEN
« on: February 11, 2011, 11:30:06 pm »

4
Pawn Full Scripts / Re: [TUTORIAL]How to make simple logs for your server.
« on: February 10, 2011, 03:42:21 am »
Dont forget - if the folder is not created before the script is started - you may get some errors.

5
Member's Introduction / hello peoples
« on: February 09, 2011, 08:34:55 pm »
Hello, peoples and persons of no gender, as you can see, my name, which is on the left, is CJ101. My real name is Justin (NOT BEIBER!!!!). Been scripting Pawn (SA-MP) since around 2006-2007. Yay for SA-MP!

I find that sometimes in life when you dont have any apples, you need some peanut butter.

6
Pawn Code Snippets / PAWN Usefull Functions
« on: February 09, 2011, 08:23:12 pm »
Post your usefull functions here!

ill start.

Code: [Select]
stock GetPlacementOf(string[],lookingfor[])
{
new len = strlen(string);
if(!IsCharInString(string,lookingfor[0])) return false;
for(new i; i<len; i++)
{
    if(string[i] == lookingfor[0]) return i;
}
return -1;
}

// useful for seeing if a character like 'C' is in a string.
stock IsCharInString(string[],char[])
{
new len = strlen(string);
for(new i; i<len; i++)
{
    if(string[i] == char[0]) return true;
}
return false;
}

stock ChangeStrCharTo(string[],changing[],changeto[])
{
new len = strlen(string);
for(new i; i<len; i++)
{
    if(string[i] == changing[0]) string[i] = changeto[i];
}
return false;
}

7
Off topic / Re: Let's write the story!
« on: February 08, 2011, 07:53:25 pm »
"I taste plastic! I demand a refund!"

8
PHP Code Snippets / Re: Simple PHP scripts
« on: February 08, 2011, 07:06:11 pm »
hm... i decided to use this, i moved the file (bot.php) into my webserver (has php5 i think).. but when i go to the file, it does nothing but show the code. :/

9
Moderator Applications / [ACCEPTED] Apply CJ101
« on: February 08, 2011, 06:51:47 pm »
Real Name: Justin
IRC Name: CJ101
What do you script ? Pawn
How old are you ? 20
Your Language: English

Pages: [1]