Graal Forums  

Go Back   Graal Forums > Gold Servers > Zone
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
  #41  
Old 10-18-2006, 12:16 AM
dude2020 dude2020 is offline
Führer Glazey
Join Date: Feb 2006
Posts: 2,417
dude2020 is a jewel in the roughdude2020 is a jewel in the rough
Quote:
Originally Posted by jkool666 View Post
I've noticed.
Ty
__________________
Reply With Quote
  #42  
Old 10-18-2006, 07:47 PM
Huwajux Huwajux is offline
Zone Oracle
Join Date: Jul 2005
Location: Padded cell
Posts: 3,947
Huwajux will become famous soon enough
Send a message via AIM to Huwajux Send a message via MSN to Huwajux
Quote:
Originally Posted by MisterMastermind View Post
Read the first post. -.-"
Yes? What do you want to point out? The first post mentioned a certain "Rule" that happens in certain conditions. That "Rule" concerns staff. You made a suggestion about "Inside-info". What would be the point? That info would just get spread around Zone like wildfire. I then mentioned the stupid decision made by staff that "Inside-info" is inside-info.

The point is developing, not going off topic.

If you want to take a jab at me, do so by all means in PM. I get the impression you want to get back at me for "Something".
__________________
No matter where we go, or what we do, we will always live our lives within the confines of our own head.
Reply With Quote
  #43  
Old 10-18-2006, 10:59 PM
MisterMastermind MisterMastermind is offline
Typhoon Xanadu, Rawr.
MisterMastermind's Avatar
Join Date: Jul 2005
Location: United States of America
Posts: 2,566
MisterMastermind is on a distinguished road
Send a message via AIM to MisterMastermind Send a message via MSN to MisterMastermind
Quote:
Originally Posted by Huwajux View Post
Blah, blah blah, accusation.
That's nice I'm simply asking your opinion on the rule itself.
__________________
Quote:
Originally Posted by haunter View Post
Graal admins don't die. They go to hell and regroup.

I believe in karma, so that I may do bad things to people and assume they deserve it.


Much love to all of the Xanadu's; Pip, BrAwLeR, Huwajux, Jo, KDS, RayP2P, Kenjaro, TripleE, Rykuz, Stoned4Life, juice188, Albi5erind, Tenchry_P2P, ryohazuki90, littlec, Snoro, MajinDragon, Allen, Spanishmafia1643, zwill, Wolfey, HitmanJ2XX, and UnknownMastermind.


Reply With Quote
  #44  
Old 10-18-2006, 11:53 PM
Gambet Gambet is offline
Registered User
Join Date: Oct 2003
Posts: 2,712
Gambet is on a distinguished road
Quote:
Originally Posted by jkool666 View Post
You can't kick the players that already have it, thats nearly impossible. For me to have an event with 20-30 players in it, I would need to:
1. Find everyone who already has the weapon (how would I do that? Ask and people would lie?)
2. At the start, type /kick <acc name> about 20 times, which would take about 1-2 mins and I wouldn't even be able to watch to make sure people are following rules.

But I do agree Typhoon, it is a bad rule.


Or you can have it automatically do so via script

PHP Code:
//This would go in the dropship

function onActionServerSide()
  {
  if (
params[0] == "sweap") {
    
serverr.sweap tokens[1];
    
player.chat "Event weapon set to: " serverr.sweap;
    for (
plallplayers) {
      if (
pl.guild != "Events Team") {
        if (
findweapon(serverr.sweap) != NULL) {
          
pl.chat "You already have the event prize:" serverr.sweap;
          
setlevel2("blah.nw",30,30);
        }
      }
    }
  }
}

//#CLIENTSIDE
function onPlayerChats()
  {
  if (
player.guild == "Events Team") {
    if (
player.chat.starts("/setweapon")) {
      
tokens player.chat.tokenize();
      if (
tokens[1] != serverr.sweap) {
        
triggerserver("gui",name,"sweap",tokens[1]);
      } else 
player.chat "Event weapon is already set to " serverr.sweap;
    }
  }
}
function 
onPlayerEnters()
  {
  if (
serverr.sweap != NULL) {
    if (
findweapon(serverr.sweap) != NULL) {
      
player.chat "You already have the event prize:" serverr.sweap;
      
setlevel2("blah.nw",30,30);
    }
  }


And...

PHP Code:
//This would go in the map itself

function onActionServerSide()
  {
 if (
params[0] == "rweap"serverr.sweap NULL;
}

//#CLIENTSIDE
function onPlayerEnters()
  {
  if (
serverr.sweap != NULL) {
    if (
findweapon(serverr.sweap) != NULL) {
      
player.chat "You already have the event prize:" serverr.sweap;
      
setlevel2("blah.nw",30,30);
    }
    
triggerserver("gui",name,"rweap");
  }




Or something like that....
Reply With Quote
  #45  
Old 10-19-2006, 03:15 AM
jkool666 jkool666 is offline
Ex-Zone God ;)
jkool666's Avatar
Join Date: Jul 2005
Location: Ontario
Posts: 2,329
jkool666 will become famous soon enough
Send a message via AIM to jkool666 Send a message via Yahoo to jkool666
@ Gambet (Quote didn't like me)

But like I said, its hard to find someone who will do something for Zone and see it uploaded. If its just a new command for ET's I don't think it would be. To be honest I don't understand a bit of the script there, would that scripting actually work to perform this task?
Reply With Quote
  #46  
Old 10-19-2006, 03:20 AM
Gambet Gambet is offline
Registered User
Join Date: Oct 2003
Posts: 2,712
Gambet is on a distinguished road
It would allow you to set a string that reads what the prize for the event will be. When you set the string, anyone in the dropship that currently has that weapon will be warped out to a designated level. Anyone that enters the level after you set the string that has the weapon will be warped out of the dropship. If anyone lags in and gets into the map by lag or something, the map would warp out anyone with the weapon designated in the string to prevent anyone from participating that has the event prize already. Once people warp into the map, the string is reset, so that you can set it again at another time.
Reply With Quote
  #47  
Old 10-19-2006, 03:40 AM
someonesomewhere someonesomewhere is offline
hi
someonesomewhere's Avatar
Join Date: Mar 2005
Location: I think I took a wrong turn at Palshife...
Posts: 1,361
someonesomewhere is on a distinguished road
Quote:
Originally Posted by jkool666 View Post
To be honest I don't understand a bit of the script there, would that scripting actually work to perform this task?
not the way it's set up, but it wouldn't be hard for stefan to fill it in

Last edited by someonesomewhere; 10-19-2006 at 10:25 PM.. Reason: go away
Reply With Quote
  #48  
Old 10-19-2006, 08:37 PM
Huwajux Huwajux is offline
Zone Oracle
Join Date: Jul 2005
Location: Padded cell
Posts: 3,947
Huwajux will become famous soon enough
Send a message via AIM to Huwajux Send a message via MSN to Huwajux
Quote:
Originally Posted by MisterMastermind View Post
That's nice I'm simply asking your opinion on the rule itself.
Oh?
Quote:
Originally Posted by MisterMastermind View Post
That was border line off topic.
__________________
No matter where we go, or what we do, we will always live our lives within the confines of our own head.
Reply With Quote
  #49  
Old 10-19-2006, 10:48 PM
MisterMastermind MisterMastermind is offline
Typhoon Xanadu, Rawr.
MisterMastermind's Avatar
Join Date: Jul 2005
Location: United States of America
Posts: 2,566
MisterMastermind is on a distinguished road
Send a message via AIM to MisterMastermind Send a message via MSN to MisterMastermind
Quote:
Originally Posted by Huwajux View Post
Oh?
Yes, the topic is if sucky PlayerB should win WeaponX or not.
__________________
Quote:
Originally Posted by haunter View Post
Graal admins don't die. They go to hell and regroup.

I believe in karma, so that I may do bad things to people and assume they deserve it.


Much love to all of the Xanadu's; Pip, BrAwLeR, Huwajux, Jo, KDS, RayP2P, Kenjaro, TripleE, Rykuz, Stoned4Life, juice188, Albi5erind, Tenchry_P2P, ryohazuki90, littlec, Snoro, MajinDragon, Allen, Spanishmafia1643, zwill, Wolfey, HitmanJ2XX, and UnknownMastermind.


Reply With Quote
  #50  
Old 10-20-2006, 02:44 AM
jkool666 jkool666 is offline
Ex-Zone God ;)
jkool666's Avatar
Join Date: Jul 2005
Location: Ontario
Posts: 2,329
jkool666 will become famous soon enough
Send a message via AIM to jkool666 Send a message via Yahoo to jkool666
Quote:
Originally Posted by Gambet View Post
It would allow you to set a string that reads what the prize for the event will be. When you set the string, anyone in the dropship that currently has that weapon will be warped out to a designated level. Anyone that enters the level after you set the string that has the weapon will be warped out of the dropship. If anyone lags in and gets into the map by lag or something, the map would warp out anyone with the weapon designated in the string to prevent anyone from participating that has the event prize already. Once people warp into the map, the string is reset, so that you can set it again at another time.
You do have a fine idea, but I can't really see Stefan adding it in. It would also need to be set so ET's can enter with their weapons.
Reply With Quote
  #51  
Old 10-20-2006, 03:15 AM
Gambet Gambet is offline
Registered User
Join Date: Oct 2003
Posts: 2,712
Gambet is on a distinguished road
Quote:
Originally Posted by jkool666 View Post
You do have a fine idea, but I can't really see Stefan adding it in. It would also need to be set so ET's can enter with their weapons.

The script doesn't count ETs, so it would allow them inside if they had the event weapon or not.
Reply With Quote
  #52  
Old 10-20-2006, 05:20 PM
Huwajux Huwajux is offline
Zone Oracle
Join Date: Jul 2005
Location: Padded cell
Posts: 3,947
Huwajux will become famous soon enough
Send a message via AIM to Huwajux Send a message via MSN to Huwajux
Quote:
Originally Posted by MisterMastermind View Post
Blind ignorance.
I've already given my opinion on the matter. Thanks.
__________________
No matter where we go, or what we do, we will always live our lives within the confines of our own head.
Reply With Quote
  #53  
Old 10-20-2006, 10:40 PM
MisterMastermind MisterMastermind is offline
Typhoon Xanadu, Rawr.
MisterMastermind's Avatar
Join Date: Jul 2005
Location: United States of America
Posts: 2,566
MisterMastermind is on a distinguished road
Send a message via AIM to MisterMastermind Send a message via MSN to MisterMastermind
Quote:
Originally Posted by Huwajux View Post
I've already given my opinion on the matter. Thanks.
Rehosting isn't an option seeing as all the sucky players are up to date with this rule.
__________________
Quote:
Originally Posted by haunter View Post
Graal admins don't die. They go to hell and regroup.

I believe in karma, so that I may do bad things to people and assume they deserve it.


Much love to all of the Xanadu's; Pip, BrAwLeR, Huwajux, Jo, KDS, RayP2P, Kenjaro, TripleE, Rykuz, Stoned4Life, juice188, Albi5erind, Tenchry_P2P, ryohazuki90, littlec, Snoro, MajinDragon, Allen, Spanishmafia1643, zwill, Wolfey, HitmanJ2XX, and UnknownMastermind.


Reply With Quote
  #54  
Old 10-21-2006, 01:03 AM
dude2020 dude2020 is offline
Führer Glazey
Join Date: Feb 2006
Posts: 2,417
dude2020 is a jewel in the roughdude2020 is a jewel in the rough
Quote:
Originally Posted by MisterMastermind View Post
Rehosting isn't an option seeing as all the sucky players are up to date with this rule.
Typhoon stop *****ing about this if u want nubs who suck not to win them THEN make new p2ps =/
__________________
Reply With Quote
  #55  
Old 10-21-2006, 06:09 AM
MisterMastermind MisterMastermind is offline
Typhoon Xanadu, Rawr.
MisterMastermind's Avatar
Join Date: Jul 2005
Location: United States of America
Posts: 2,566
MisterMastermind is on a distinguished road
Send a message via AIM to MisterMastermind Send a message via MSN to MisterMastermind
Quote:
Originally Posted by dude2020 View Post
Typhoon stop *****ing about this if u want nubs who suck not to win them THEN make new p2ps =/
I'm not gonna spend 500+ dollars to win every damn event I go in. Bill gates doesn't even have that kind of money.
__________________
Quote:
Originally Posted by haunter View Post
Graal admins don't die. They go to hell and regroup.

I believe in karma, so that I may do bad things to people and assume they deserve it.


Much love to all of the Xanadu's; Pip, BrAwLeR, Huwajux, Jo, KDS, RayP2P, Kenjaro, TripleE, Rykuz, Stoned4Life, juice188, Albi5erind, Tenchry_P2P, ryohazuki90, littlec, Snoro, MajinDragon, Allen, Spanishmafia1643, zwill, Wolfey, HitmanJ2XX, and UnknownMastermind.


Reply With Quote
  #56  
Old 10-21-2006, 07:13 AM
Googi Googi is offline
A Serious Epidemic
Googi's Avatar
Join Date: Oct 2001
Location: Canada
Posts: 18,866
Googi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud of
Send a message via AIM to Googi
Quote:
Originally Posted by MisterMastermind View Post
I'm not gonna spend 500+ dollars to win every damn event I go in. Bill gates doesn't even have that kind of money.
This is looking less and less like you're trying to remove a stupid rule and more and more like it's about your ego.
__________________
Reply With Quote
  #57  
Old 10-21-2006, 02:00 PM
bahamutstevetff bahamutstevetff is offline
Chalk one up to me!
bahamutstevetff's Avatar
Join Date: Aug 2005
Location: England, Wymondham, Norfolk
Posts: 4,145
bahamutstevetff will become famous soon enough
Send a message via MSN to bahamutstevetff Send a message via Yahoo to bahamutstevetff
the best thing should be that if someone who has an event weapon wins, just cancell the event, less sucky people will have event weapons.
Reply With Quote
  #58  
Old 10-21-2006, 02:20 PM
Huwajux Huwajux is offline
Zone Oracle
Join Date: Jul 2005
Location: Padded cell
Posts: 3,947
Huwajux will become famous soon enough
Send a message via AIM to Huwajux Send a message via MSN to Huwajux
Quote:
Originally Posted by MisterMastermind View Post
Rehosting isn't an option seeing as all the sucky players are up to date with this rule.
Sucky players? Someone wins an event that isn't you. Boo hoo. They must obviously suck.
__________________
No matter where we go, or what we do, we will always live our lives within the confines of our own head.
Reply With Quote
  #59  
Old 10-21-2006, 04:06 PM
dude2020 dude2020 is offline
Führer Glazey
Join Date: Feb 2006
Posts: 2,417
dude2020 is a jewel in the roughdude2020 is a jewel in the rough
Quote:
Originally Posted by MisterMastermind View Post
I'm not gonna spend 500+ dollars to win every damn event I go in. Bill gates doesn't even have that kind of money.
WEll then stop ****ing complaining then

Quote:
Originally Posted by Googi View Post
This is looking less and less like you're trying to remove a stupid rule and more and more like it's about your ego.
agreed

Quote:
Originally Posted by bahamutstevetff View Post
the best thing should be that if someone who has an event weapon wins, just cancell the event, less sucky people will have event weapons.
IXI, you just need to shut up w/ Typh becuz this is Baby Back Bull ****
__________________
Reply With Quote
  #60  
Old 10-21-2006, 04:32 PM
MisterMastermind MisterMastermind is offline
Typhoon Xanadu, Rawr.
MisterMastermind's Avatar
Join Date: Jul 2005
Location: United States of America
Posts: 2,566
MisterMastermind is on a distinguished road
Send a message via AIM to MisterMastermind Send a message via MSN to MisterMastermind
Quote:
Originally Posted by bahamutstevetff View Post
the best thing should be that if someone who has an event weapon wins, just cancell the event, less sucky people will have event weapons.
Exactly.
Quote:
Sucky players? Someone wins an event that isn't you. Boo hoo. They must obviously suck.
No, it's the fact that they run from everyone until I kill the rest of the players, then come running to the ET saying that I already have the weapon.
__________________
Quote:
Originally Posted by haunter View Post
Graal admins don't die. They go to hell and regroup.

I believe in karma, so that I may do bad things to people and assume they deserve it.


Much love to all of the Xanadu's; Pip, BrAwLeR, Huwajux, Jo, KDS, RayP2P, Kenjaro, TripleE, Rykuz, Stoned4Life, juice188, Albi5erind, Tenchry_P2P, ryohazuki90, littlec, Snoro, MajinDragon, Allen, Spanishmafia1643, zwill, Wolfey, HitmanJ2XX, and UnknownMastermind.


Reply With Quote
  #61  
Old 10-21-2006, 05:05 PM
jkool666 jkool666 is offline
Ex-Zone God ;)
jkool666's Avatar
Join Date: Jul 2005
Location: Ontario
Posts: 2,329
jkool666 will become famous soon enough
Send a message via AIM to jkool666 Send a message via Yahoo to jkool666
Quote:
Originally Posted by Huwajux View Post
Sucky players? Someone wins an event that isn't you. Boo hoo. They must obviously suck.
Typhoon and IXI don't like it because its impossible for them to win. I don't care what anyone says about cokcyness, ego whatever, if Typhoon or IXI are in an event, they will win. They shouldn't be punished for being better then everyone else.

Quote:
Originally Posted by dude2020 View Post
IXI, you just need to shut up w/ Typh becuz this is Baby Back Bull ****
You're only not on their side because you know that Typhoon made this thread because you auto-won bluepistoles because of this dumb rule.


With this rule, a player only needs to get to the final two. It creates more teaming, more hiding and obviously more peoples (hense this thread). It needs to be changed, IXI's idea of just canceling the event was nice.
Reply With Quote
  #62  
Old 10-21-2006, 05:14 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Quote:
Originally Posted by MisterMastermind View Post
Yes, the topic is if sucky PlayerB should win WeaponX or not.
Event items aren't made for "pros" to have, they're made for people who win events. I don't even like Zone's hosting system. I'd rather have people go through a spar tournment but it's kind of hard to setup.
__________________
Reply With Quote
  #63  
Old 10-21-2006, 05:27 PM
dude2020 dude2020 is offline
Führer Glazey
Join Date: Feb 2006
Posts: 2,417
dude2020 is a jewel in the roughdude2020 is a jewel in the rough
Quote:
Originally Posted by jkool666 View Post
Typhoon and IXI don't like it because its impossible for them to win. I don't care what anyone says about cokcyness, ego whatever, if Typhoon or IXI are in an event, they will win. They shouldn't be punished for being better then everyone else.
then see this they in all the events and so that They wold be the only ones Getting them until the ET dicides to just crap the whole thing SO thats one of the main reasons this rule was put in


Quote:
Originally Posted by jkool666
You're only not on their side because you know that Typhoon made this thread because you auto-won bluepistoles because of this dumb rule.
Acutally i would of Won bps again if this rule wasnt there and in only siding w/ Huwa becuz this is Bull **** jsut complaining sounds more like of a support ticket type thing to me


Quote:
Originally Posted by Jkool666
With this rule, a player only needs to get to the final two. It creates more teaming, more hiding and obviously more peoples (hense this thread). It needs to be changed, IXI's idea of just canceling the event was nice.
And thats why the kicking function was made to Kick those cheaters and maybe when u go on tag u see all the nicks like when u press n to see hiders?
__________________
Reply With Quote
  #64  
Old 10-21-2006, 08:55 PM
bahamutstevetff bahamutstevetff is offline
Chalk one up to me!
bahamutstevetff's Avatar
Join Date: Aug 2005
Location: England, Wymondham, Norfolk
Posts: 4,145
bahamutstevetff will become famous soon enough
Send a message via MSN to bahamutstevetff Send a message via Yahoo to bahamutstevetff
i <3 jesse, john, go change ur nappies or dypers depending on your nationality. god like if some1 who already has event weapons wins then it should just be tough luck. cuz u didnt win, you didnt come out on top in an event so you do now win.
Reply With Quote
  #65  
Old 10-21-2006, 09:09 PM
Huwajux Huwajux is offline
Zone Oracle
Join Date: Jul 2005
Location: Padded cell
Posts: 3,947
Huwajux will become famous soon enough
Send a message via AIM to Huwajux Send a message via MSN to Huwajux
Quote:
Originally Posted by MisterMastermind View Post
No, it's the fact that they run from everyone until I kill the rest of the players, then come running to the ET saying that I already have the weapon.
Then it seems you are the problem. If a good player wins an event item, fair enough. But taking part in an event for the same item will make it a more likely possibility that he will win again. So people hide from the good player because he has obviously won before, and they take advantage of it by hiding.

If people with the event item didn't play, then people wouldn't hide, because the amount of good players would deminish. Man, that's a sketchy explanation... I hope he doesn't use "TEHN IT'S WHO SUCK TEH LEEST"
__________________
No matter where we go, or what we do, we will always live our lives within the confines of our own head.

Last edited by Huwajux; 10-21-2006 at 11:39 PM..
Reply With Quote
  #66  
Old 10-21-2006, 09:16 PM
bahamutstevetff bahamutstevetff is offline
Chalk one up to me!
bahamutstevetff's Avatar
Join Date: Aug 2005
Location: England, Wymondham, Norfolk
Posts: 4,145
bahamutstevetff will become famous soon enough
Send a message via MSN to bahamutstevetff Send a message via Yahoo to bahamutstevetff
so people wouldnt deserve event items, honestly the event system on zone is so jewed.
Reply With Quote
  #67  
Old 10-21-2006, 09:29 PM
Googi Googi is offline
A Serious Epidemic
Googi's Avatar
Join Date: Oct 2001
Location: Canada
Posts: 18,866
Googi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud of
Send a message via AIM to Googi
Quote:
Originally Posted by MisterMastermind View Post
No, it's the fact that they run from everyone until I kill the rest of the players, then come running to the ET saying that I already have the weapon.
Yeah, and making it so that you can only play if you don't already have the weapon is a perfectly good solution to this. The fact that you're rejecting this solution shows that you aren't really trying to change the current system (which is indeed a bad system) but just trying to monopolize event weapons.
__________________
Reply With Quote
  #68  
Old 10-21-2006, 10:14 PM
MisterMastermind MisterMastermind is offline
Typhoon Xanadu, Rawr.
MisterMastermind's Avatar
Join Date: Jul 2005
Location: United States of America
Posts: 2,566
MisterMastermind is on a distinguished road
Send a message via AIM to MisterMastermind Send a message via MSN to MisterMastermind
Quote:
Originally Posted by jkool666 View Post
Typhoon and IXI don't like it because its impossible for them to win. I don't care what anyone says about cokcyness, ego whatever, if Typhoon or IXI are in an event, they will win.
I'm tempted to force IXI on so that we can both dominate the map and make it so they HAVE to rehost.
__________________
Quote:
Originally Posted by haunter View Post
Graal admins don't die. They go to hell and regroup.

I believe in karma, so that I may do bad things to people and assume they deserve it.


Much love to all of the Xanadu's; Pip, BrAwLeR, Huwajux, Jo, KDS, RayP2P, Kenjaro, TripleE, Rykuz, Stoned4Life, juice188, Albi5erind, Tenchry_P2P, ryohazuki90, littlec, Snoro, MajinDragon, Allen, Spanishmafia1643, zwill, Wolfey, HitmanJ2XX, and UnknownMastermind.


Reply With Quote
  #69  
Old 10-21-2006, 10:39 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Quote:
Originally Posted by MisterMastermind View Post
I'm tempted to force IXI on so that we can both dominate the map and make it so they HAVE to rehost.
Ever heard of event disruption?
__________________
Reply With Quote
  #70  
Old 10-21-2006, 10:42 PM
dude2020 dude2020 is offline
Führer Glazey
Join Date: Feb 2006
Posts: 2,417
dude2020 is a jewel in the roughdude2020 is a jewel in the rough
Quote:
Originally Posted by bahamutstevetff View Post
john, go change ur nappies or dypers depending on your nationality. god like if some1 who already has event weapons wins then it should just be tough luck. cuz u didnt win, you didnt come out on top in an event so you do now win.
IXI go change ur suckyness or noobess u damn Brit and Guess whats the solution??!?!?!?!?! THEY SHOULDNT BE IN THERE i think Gambets script should be put in
__________________
Reply With Quote
  #71  
Old 10-21-2006, 11:27 PM
jkool666 jkool666 is offline
Ex-Zone God ;)
jkool666's Avatar
Join Date: Jul 2005
Location: Ontario
Posts: 2,329
jkool666 will become famous soon enough
Send a message via AIM to jkool666 Send a message via Yahoo to jkool666
Quote:
Originally Posted by dude2020 View Post
Acutally i would of Won bps again if this rule wasnt there and in only siding w/ Huwa becuz this is Bull **** jsut complaining sounds more like of a support ticket type thing to me
*Thinks back on that event* no, you lost, you came second, you auto won. Typhoon beat you. I remember this well from everyone afterwards complaining to me that you get the prize anyways and me having to explain this bs rule.
Quote:
Originally Posted by dude2020 View Post
And thats why the kicking function was made to Kick those cheaters and maybe when u go on tag u see all the nicks like when u press n to see hiders?
John, theres one thing you don't quite understand. Why have something that has the potential to create a problem. Why not eliminate the potential all together.
Reply With Quote
  #72  
Old 10-22-2006, 12:05 AM
dude2020 dude2020 is offline
Führer Glazey
Join Date: Feb 2006
Posts: 2,417
dude2020 is a jewel in the roughdude2020 is a jewel in the rough
Quote:
Originally Posted by jkool666 View Post
*Thinks back on that event* no, you lost, you came second, you auto won. Typhoon beat you. I remember this well from everyone afterwards complaining to me that you get the prize anyways and me having to explain this bs rule.
*Thinks back to that post* i never said THAT event now did i? No

Quote:
Originally Posted by Jkool666
John, theres one thing you don't quite understand. Why have something that has the potential to create a problem. Why not eliminate the potential all together.
Orly then tell me the Potential that would create the problem then? Vulcan acutally working for Viper? or Vulcan is Viper?
__________________
Reply With Quote
  #73  
Old 10-22-2006, 12:09 AM
pooper200000 pooper200000 is offline
The Blackswan
Join Date: May 2006
Location: Asylum
Posts: 5,060
pooper200000 will become famous soon enough
Send a message via AIM to pooper200000
Quote:
Originally Posted by dude2020 View Post
*Thinks back to that post* i never said THAT event now did i? No

Orly then tell me the Potential that would create the problem then? Vulcan acutally working for Viper? or Vulcan is Viper?
Vulcan is the cheerful viper tamer. I don't think its really important. The event outcome could have changed if that happened.
__________________
Always Watching!
Reply With Quote
  #74  
Old 10-22-2006, 12:13 AM
dude2020 dude2020 is offline
Führer Glazey
Join Date: Feb 2006
Posts: 2,417
dude2020 is a jewel in the roughdude2020 is a jewel in the rough
Quote:
Originally Posted by pooper200000 View Post
Vulcan is the cheerful viper tamer.
i shot out of the dark here Do u know who Viper is?
Quote:
Originally Posted by pooper200000
I don't think its really important. The event outcome could have changed if that happened.
Actually i really confused at this part of the post
__________________
Reply With Quote
  #75  
Old 10-22-2006, 12:34 AM
pooper200000 pooper200000 is offline
The Blackswan
Join Date: May 2006
Location: Asylum
Posts: 5,060
pooper200000 will become famous soon enough
Send a message via AIM to pooper200000
Quote:
Originally Posted by dude2020 View Post
i shot out of the dark here Do u know who Viper is? Actually i really confused at this part of the post
Yes I know who viper is and your always confused.
__________________
Always Watching!
Reply With Quote
  #76  
Old 10-22-2006, 12:44 AM
dude2020 dude2020 is offline
Führer Glazey
Join Date: Feb 2006
Posts: 2,417
dude2020 is a jewel in the roughdude2020 is a jewel in the rough
Quote:
Originally Posted by pooper200000 View Post
Yes I know who viper is
k and i ighly doubt Vulcan is a "Viper Tamer"
Quote:
Originally Posted by Sn
and your always confused.
and ur always werid
__________________
Reply With Quote
  #77  
Old 10-22-2006, 12:45 AM
jkool666 jkool666 is offline
Ex-Zone God ;)
jkool666's Avatar
Join Date: Jul 2005
Location: Ontario
Posts: 2,329
jkool666 will become famous soon enough
Send a message via AIM to jkool666 Send a message via Yahoo to jkool666
Quote:
Originally Posted by dude2020 View Post
*Thinks back to that post* i never said THAT event now did i? No
Then no, you wouldn't have bluepistoles, you won't be awarded those other ones because you lost them remember?
Quote:
Originally Posted by dude2020 View Post
Orly then tell me the Potential that would create the problem then? Vulcan acutally working for Viper? or Vulcan is Viper?
Are you extremely stupid? Or just can't read? Good lord... Think then post. Go read the rest of this thread... I'm not showing you...
Reply With Quote
  #78  
Old 10-22-2006, 12:49 AM
dude2020 dude2020 is offline
Führer Glazey
Join Date: Feb 2006
Posts: 2,417
dude2020 is a jewel in the roughdude2020 is a jewel in the rough
Quote:
Originally Posted by jkool666 View Post
Then no, you wouldn't have bluepistoles, you won't be awarded those other ones because you lost them remember?
i Still dont have Bps for the following reason:Vulcan doesnt have access to his other account WHICH I DOUBT and i could win Bps any ol time

Quote:
Originally Posted by jkool666
Are you extremely stupid? Or just can't read? Good lord... Think then post.
Are you extremely stupid? Or just can't u understand that im pissed off? Good lord...
__________________
Reply With Quote
  #79  
Old 10-22-2006, 12:53 AM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Quote:
Originally Posted by dude2020 View Post

Are you extremely stupid? Or just can't u understand that im pissed off? Good lord...
You should never EVER call ANYONE IN THE WORLD stupid. Specially you.

I already kind of posted my thoughts and people seemed to ignore it (because im always right of course). So -shrugs-.
__________________
Reply With Quote
  #80  
Old 10-22-2006, 12:58 AM
dude2020 dude2020 is offline
Führer Glazey
Join Date: Feb 2006
Posts: 2,417
dude2020 is a jewel in the roughdude2020 is a jewel in the rough
Quote:
Originally Posted by Gerami View Post
You should never EVER call ANYONE IN THE WORLD stupid. Specially you.
All ****ing becuz i dont show it that doesnt mean i dont work my ****ing ass off at School and quite frankly i acutally do good so get ur ****ing facts right before u go bashing

Quote:
Originally Posted by Crono
(because im always right of course)
i lol'd at that
__________________
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 12:15 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.