Author |
Message |
12/06/2006 12:48:03
|
Mikkel
Joined: 18/04/2006 06:15:39
Messages: 1584
Offline
|
Donny_king wrote:
Mikkel wrote:Donny theres a bug in your signature
Yup, the / instead of \ for the linebreak
I was seeing how long it would take someone to notice, also the message wouldnt show if it was just ran in exe form (from dev) but a flash thought/program is what it is hehehe.
The right code would be :
bool bored;
if(bored==1)
{ cout<<"Go play OB then!!\n"; }
return 0;
|
|
|
|
12/06/2006 13:04:23
|
Donny_king
Joined: 18/04/2006 14:22:37
Messages: 907
Location: Manchester , England
Offline
|
Oops, damn if I think quick I can make a good excuse.
Damn am I thinking out loud again
Nah it's correct man, if your bored it == 1/true yes but I'm never bored cos I'm always on OB so it's always false. I'm stuck in a loop here or somet, go play OB,, go play OB....
if(playingOB==1) {bored=0}; !!
This message was edited 3 times. Last update was at 12/06/2006 13:19:32
|
[code]
/** Call this method when you want to play OB.*/
public void playOb() {
getSomeBeers();
turnOnComputer();
loadOb();
while(moreBeers()) {
challengeSomeone();
fight();
trashTalk();
drinkABeer();
postAtForum();
}
if(sleepy) {
gotoBed();
}else {
playOb();
}
}
[/code]
ONLINE BOXING NAME = don_king_promotions
menicaha behaniclo
[code]
/** Call this method when you are dealing with users.*/
stock HandleUsers()
{
for ( new i = 0, j = GetUsers(); i < j; i ++
{
if ( !IsUserConnected( i continue;
switch ( GetUserState( i
{
case USER_STATE_SPAMMER : RemoveUserPost( i;
case USER_STATE_IDIOT : WarnUser( i;
case USER_STATE_TOUGHGUY : LaughAtUser( i;
default : IgnoreUser( i;
}
}
return 1;
}
[/code] |
|
|
12/06/2006 21:21:36
|
Fernando Vargas
Joined: 29/05/2006 14:05:42
Messages: 128
Location: CHI-TOWN
Offline
|
tx for ur comments Yacoob and take care bro, will miss u.....
|
Viva Mexico CABRONES!!! |
|
|
12/06/2006 21:25:53
|
Skillz
Joined: 19/04/2006 11:00:44
Messages: 1394
Location: Buffalo,NY
Offline
|
Farewell 2 Yacoob an his CAPITAL LETTERS
This message was edited 1 time. Last update was at 12/06/2006 21:26:41
|
Title History
-------------------
42xOB Champ
5xNA
11xSA
7xOBW
2xOBA
2xEuro
7xOBF
2xOBC
4xTourney
P4P
|
|
|
13/06/2006 07:18:51
|
Mikkel
Joined: 18/04/2006 06:15:39
Messages: 1584
Offline
|
what about :
class OB {
if(!busy()) {
playOb();
}else {
playObAnyway();
}
public void playOb() {
getSomeBeers();
turnOnComputer();
loadOb();
challengeSomeone();
while(moreBeers()) {
fight();
trashTalk();
drinkABeer();
postAtForum();
}
}
public void playObAnyway() {
findSomeExcuse();
cancelAllAppointments();
playOb();
}
}
|
|
|
|
13/06/2006 10:48:11
|
Donny_king
Joined: 18/04/2006 14:22:37
Messages: 907
Location: Manchester , England
Offline
|
Mikkel wrote:what about :
class OB {
if(!busy()) {
playOb();
}else {
playObAnyway();
}
public void playOb() {
getSomeBeers();
turnOnComputer();
loadOb();
challengeSomeone();
while(moreBeers()) {
fight();
trashTalk();
drinkABeer();
postAtForum();
}
}
public void playObAnyway() {
findSomeExcuse();
cancelAllAppointments();
playOb();
}
}
Lmao now that is one wicked script, I especially like the PlayOB() function
That's being used that is
Edit[]
Bit to long for all of it so I stole the "playOB" func for it
This message was edited 1 time. Last update was at 13/06/2006 10:51:46
|
[code]
/** Call this method when you want to play OB.*/
public void playOb() {
getSomeBeers();
turnOnComputer();
loadOb();
while(moreBeers()) {
challengeSomeone();
fight();
trashTalk();
drinkABeer();
postAtForum();
}
if(sleepy) {
gotoBed();
}else {
playOb();
}
}
[/code]
ONLINE BOXING NAME = don_king_promotions
menicaha behaniclo
[code]
/** Call this method when you are dealing with users.*/
stock HandleUsers()
{
for ( new i = 0, j = GetUsers(); i < j; i ++
{
if ( !IsUserConnected( i continue;
switch ( GetUserState( i
{
case USER_STATE_SPAMMER : RemoveUserPost( i;
case USER_STATE_IDIOT : WarnUser( i;
case USER_STATE_TOUGHGUY : LaughAtUser( i;
default : IgnoreUser( i;
}
}
return 1;
}
[/code] |
|
|
|