Staredit Network > Forums > SC1 UMS Mapmaking Assistance > Topic: [SOLVED] Spawn Rotation
[SOLVED] Spawn Rotation
This topic is locked. You can no longer write replies here.
May 10 2012, 8:30 am
By: staxx  

May 10 2012, 8:30 am staxx Post #1



Ok my brain is fried right now and i'm overly tired. What i'm trying to do is set up a spawning system that adjusts when theres uneven players.

So right now theres...
3 players on force 1, a computer on force 2 which is allied with force 1
3 players on force 3 ,and a computer on force 4 allied with force 3.
players from force 1 spawn units for force 2 when a timer reaches 0 vice vera for the opposite team.

Now, onto how i want the spawning to be.

F1 has 3 players F3 has 3 players -- everyone spawns
F1 has 2 players F3 has 3 players -- F1 everyone spawns F3 2 players spawn cycling so that 1 player gets a turn with no spawn
F1 has 1 player F3 has 3 players -- F1 spawns F3 each player takes turns spawning
F1 has 2 players F3 has 2 players -- everyone spawns
F1 has 1 player F3 has 1 player -- everyone spawns

there is also a leaderboard implemented into this showing who spawns next which i need a hand with as well.

The forementioned is obvioustly for when Force 1 is shorthanded, i was thinking to use opponents for the conditions and death counters in the actions but right now i cant think of how to combo it all together. Anyways i'm going to catch some sleep, hope to have an answer when i wake up :D

Thanks



None.

May 10 2012, 2:08 pm Sacrieur Post #2

Still Napping

I think the best way to do this is like clockwork. Run a trigger that rotates spawn for each of the forces separately. The rest will take care of itself.



None.

May 10 2012, 2:14 pm NudeRaider Post #3

We can't explain the universe, just describe it; and we don't know whether our theories are true, we just know they're not wrong. >Harald Lesch

So you want all players to spawn each turn, but let one player sit out rotating through the force when there's a 2v3 and even 2 players that don't spawn in case of a 1v3.
This requires several death counters to keep track of things and good deal of thought for the complete system. Certainly no task for a sleepy night. I'll walk you through, feel free to ask where you don't understand. Let's get started.

Note that most of the system will be handled by the P8 computer because he's always there and his triggers run last. (Triggers are executed player by player, which means first all of P1's triggers run, then all of P2, etc.)

First you need to detect how many players there are. I'd do that by having a trigger owned by all players that sets a dc to 1 for Current Player at game start:
Trigger
Players
  • All Players
  • Conditions
  • Always
  • Actions
  • set dc 'I'm here' for Current Player to 1


  • Then, depending on the dc counts for Force1 and Force3 you give out "spawning tokens" for the other force:

    Force 1 has 1 enemy => 1 dc 'spawn token' (P4)
    Force 1 has 2 enemies => 2 dc 'spawn token' (P4)
    ...
    Force 3 has 1 enemy => 1 dc 'spawn token' (P8)
    ...
    P8 will store the spawn tokens for Force 3, P4 will store Force 1's tokens.

    In trigger form:
    Trigger
    Players
  • Player 8
  • Conditions
  • Force 3 has suffered exactly 1 'I'm here'
  • Actions
  • Set dc 'spawn token' for P4 to 1
  • Preserve Trigger
  • Trigger
    Players
  • Player 8
  • Conditions
  • Force 3 has suffered exactly 2 'I'm here'
  • Actions
  • Set dc 'spawn token' for P4 to 2
  • Preserve Trigger
  • ...
    Trigger
    Players
  • Player 8
  • Conditions
  • Force 1 has suffered exactly 1 'I'm here'
  • Actions
  • Set dc 'spawn token' for P8 to 1
  • Preserve Trigger
  • ...
    This even accounts for leavers because the dc of absent players is not counted towards the force total.


    Now you need a way of telling which players have to sit out. I'm also going to use a token system based on dcs. Every player gets a token which is removed when they spawn. Only when the whole force ran out of tokens new tokens will be distributed. (which may take up to 2-3 spawning rounds)
    Trigger
    Players
  • Player 8
  • Conditions
  • Force 1 has suffered at most 0 deaths of 'I may spawn'
  • Actions
  • Set deaths of Force 1 to 1 of 'I may spawn'
  • Preserve Trigger

  • Trigger
    Players
  • Player 8
  • Conditions
  • Force 3 has suffered at most 0 deaths of 'I may spawn'
  • Actions
  • Set deaths of Force 3 to 1 of 'I may spawn'
  • Preserve Trigger



  • Finally on to the actual spawning triggers:
    Trigger
    Players
  • Force 1
  • Conditions
  • [spawning event]
  • P4 has sufferet at least 1 deaths of 'spawn token'
  • Current Player has suffered at least 1 death of 'I may spawn'
  • Actions
  • [spawn units]
  • subtract 1 deaths of 'spawn token' from P4
  • subtract 1 deaths of 'I may spawn' from Current Player
  • Preserve Trigger



  • Keep in mind that this system in its basic form requires the spawning to happen within 1 trigger loop. If for any reason your spawning (the unit creation, not the cooldown between spawns) would take longer you'd have to delay the handing out of new tokens. Use the negative of the [spawning event] as a condition, for example.

    Also be aware of this bug, so you can fix it: In a 2v3 situation P1, P2 and P5, P6 will spawn the first round, P3 has to sit out. Next round P1 and P2 both won't have a token, because P3 still has one, so P8 won't refresh yet. Which results in only P3 spawning. However Force 1 still has 1 death of 'spawn token'. So whenever P8 detects that Force 1 has at 1 death of 'spawn token' set the [spawning event] to true for Force 1. If it's a global event you can do an extrordinary spawn units trigger that covers this case.
    Anyhow, using that fix the P1's spawning will lag 1 trigger loop behind P3's. If that's a problem we can add a bunch of triggers to the token distribution system to always update in time. But for the sake of better understanding I chose to keep it simple fow now.




    May 10 2012, 4:34 pm GGmano Post #4

    Mr.Pete-Tong

    Hi staxx ive xplained you the way in our channel. But im gonna xplain it here also

    As nuderaider said you need 6 triggers for uneven number of players in the game, 3 for top 3 for bottom. you know how those triggers would look like.

    then you need 3 triggers for each team that gets activated after the spawn. notice these are only activated if 1 of them 6 uneven player triggers are set. For xample its 3player at bottom team and 2 player at top team then 1 trigger of uneven number players activated and sets 1 trigger here after the spawn. the point of this trigger is now to set individual player triggers so that only 2 players from bottom team spawns and 1 sit out. the sit out needs to be changed from player 1 to the next player sitting out. this is where them individual triggers are needed.

    you need 3 individual triggers for each scenario on both top and bottom teams. these will do so the sit out changes for each spawn. they are made by death count. so at ur spawn triggers u need have this death count in your conditions. so players only spawn if they are set to 0 death count. now the individual sit out triggers beeing activated after each spawn and sets death for each individual player.

    Ill put up xample on the triggers for 1 scenario

    note:is a unit is created from start for each player (the ban player unit- kerrigan)

    description: 3v2 scenario

    condition: top team(force) brings precise 2 kerrigans and bottom team(force) brings precise 3 to location ban area

    action: set deathcount 1 out 6

    description: set sit out triggers bottom

    condition: the death count 1 is set

    action: set death count 1 out of 3(start individaul sit out trigger death count), clear death count 1 out of 6, set individual deathcount spawn player1 to 1, set individual deathcount player spawn 2 to 0, set individual deathcount spawn player 3 to 0

    description: sit out individual triggers player1

    condition: after the spawn(could be bring 0 buildings), start indivual player death count is set 1 out of 3, p1 death count spawn is set 0, p2 death count spawn is set 0, p3 death count spawn is set 1

    action: set death count spawn p1 to 1, set death count spawn p2 to 0, set death count spawn p3 to 0, preserve trigger

    description: sit out individual triggers player2

    condition: after the spawn(could be bring 0 buildings), start indivual player death count is set 1 out of 3, p1 death count spawn is set 1, p2 death count spawn is set 0, p3 death count spawn is set 0

    action: set death count spawn p1 to 0, set death count spawn p2 to 1, set death count spawn p3 to 0, preserve trigger

    description: sit out individual triggers player3

    condition: after the spawn(could be bring 0 buildings), start indivual player death count is set 1 out of 3, p1 death count spawn is set 0, p2 death count spawn is set 1, p3 death count spawn is set 0

    action: set death count spawn p1 to 0, set death count spawn p2 to 0, set death count spawn p3 to 1, preserve trigger

    ps. I like your good work nuderaider. Are you ever online on sc anymore nuderaider??

    Post has been edited 2 time(s), last time on May 10 2012, 4:52 pm by GGmano.



    A Legendary Map Maker, Player. Apparently im more than intresting to observe Irl

    Ill try do my best in making all youre watchers happy

    The maps I made are tweaked into perfection and maximum strategy added

    May 11 2012, 12:50 am staxx Post #5



    Ahhh NudeRaider, just the person i was hoping to hear from.

    I had started on something right before i saw your message on here, and just finished off with it. (It uses a bit of what you had suggested to me as well as what GGmano had discussed with me over b.net in combination with what i had already started on)

    Basically...

    Trigger
    Players
  • Force 1
  • Force 3
  • Conditions
  • Always
  • Actions
  • Set Current "I'm Here" to 1


  • When scenarios occur (3v2, 3v1, 2v2, 2v1, 1v1) -- "Spawn Me" gets redistributed to each force accordingly.
    Example...
    Trigger
    Players
  • Force 1
  • Conditions
  • Force 1 has 3 "i'm here"
  • Force 3 has 2 "i'm here"
  • Actions
  • Subtract 1 "spawn me" for current


  • P4 controls the spawn rotation for F1 in circumstances that the scenario be 3v2 and 3v1 (F1 having the 3) This gets triggered by a death count when the timer reaches 0
    looks something like this in a 3v2 scenario...
    Trigger
    Players
  • Force 1
  • Force 3
  • Conditions
  • Countdown timer is exact 0
  • Actions
  • Set timer at 60
  • Set deaths "Rotation" to1
  • Preserve



  • Trigger
    Players
  • Force 2
  • Conditions
  • Current suffered 1 "rotation"
  • Force 1 suffered 3 "im here"
  • Force 3 suffered 2 "im here"
  • Player 1 suffered 1 "spawn me"
  • Player 2 suffered 1 "spawn me"
  • player 3 suffered 0 "spawn me"
  • Actions
  • set current to 0 "rotation"
  • Set P1 to 0 "spawn me"
  • Set P2 to 1 "spawn me"
  • Set P3 to 1 "spawn me"
  • Preserve



  • Trigger
    Players
  • Force 2
  • Conditions
  • Current suffered 1 "rotation"
  • Force 1 suffered 3 "im here"
  • Force 3 suffered 2 "im here"
  • Player 1 suffered 0 "spawn me"
  • Player 2 suffered 1 "spawn me"
  • player 3 suffered 1 "spawn me"
  • Actions
  • set current to 0 "rotation"
  • Set P1 to 1 "spawn me"
  • Set P2 to 0 "spawn me"
  • Set P3 to 1 "spawn me"
  • Preserve



  • Trigger
    Players
  • Force 2
  • Conditions
  • Current suffered 1 "rotation"
  • Force 1 suffered 3 "im here"
  • Force 3 suffered 2 "im here"
  • Player 1 suffered 1 "spawn me"
  • Player 2 suffered 0 "spawn me"
  • player 3 suffered 1 "spawn me"
  • Actions
  • set current to 0 "rotation"
  • Set P1 to 1 "spawn me"
  • Set P2 to 1 "spawn me"
  • Set P3 to 0 "spawn me"
  • Preserve



  • The above is also the method used in a 3v1 scenario.

    Onto The 2v1 Scenario....
    This one is triggered by individual players


    Trigger
    Players
  • Player 1
  • Conditions
  • Force 1 has 2 "im here"
  • Force 3 has 1 "im here"
  • Countdown timer is xx seconds
  • Current has 0 "spawn me"
  • Actions
  • Set 1 "spawn me" for current
  • preserve



  • Trigger
    Players
  • Player 1
  • Conditions
    [Force 1 has 2 "im here"
  • Force 3 has 1 "im here"
  • Countdown timer is xx seconds
  • Current has 1 "spawn me"
  • Actions
  • Set 0 "spawn me" for current
  • preserve


  • Sound solid? BTW Nude this is a new variation of DS i'm making

    Post has been edited 5 time(s), last time on May 11 2012, 6:56 pm by staxx.



    None.

    May 11 2012, 4:29 am GGmano Post #6

    Mr.Pete-Tong

    I think you need make your first trigger different:


    Description:

    Execute At Game Start


    make the action add 1 instead of set 1(if 3 player the trigger activated 3 times= force has 3 death) (if 2 player, force has 2 death)



    A Legendary Map Maker, Player. Apparently im more than intresting to observe Irl

    Ill try do my best in making all youre watchers happy

    The maps I made are tweaked into perfection and maximum strategy added

    May 11 2012, 5:56 am staxx Post #7



    Quote from GGmano
    I think you need make your first trigger different:


    Description:

    Execute At Game Start


    make the action add 1 instead of set 1(if 3 player the trigger activated 3 times= force has 3 death) (if 2 player, force has 2 death)

    Don't think thats an issue, as if i put to add 1 then each player would end up with 3 death counts. set insures that it stays at 1 when the trigger is activated over 3 players.

    Anyways to update, i've tested my triggs out and they failed :P I'm going to guess its my subtract 1 from current thats messing everything up as when i started it up 3v2 i got a message twice notifying of uneven spawn detected. If this is the case i'm guessing im going to have to set individual triggers within each player to detect who to subtract from. i'll check back when i wake up to see what suggestions you guys may have.



    None.

    May 11 2012, 6:55 am NudeRaider Post #8

    We can't explain the universe, just describe it; and we don't know whether our theories are true, we just know they're not wrong. >Harald Lesch

    The first trigger gives only Force 1 and their allied computer player deaths of 'I'm here'. Dunno if this is intentional. If it is, you need a 2nd trigger for Force 3.
    Also currently you have it as 'set to 1' which means first player in Force 1 runs it, sets everyone of Force 1 & 2 (=P1-4) to 1, then the next player of Force 1 does the same again, etc.
    This doesn't make sense, unless you meant add?
    If you take add your first trigger would set F1's dc to the number of human players. Dunno how this is useful because you need keep track of the player numbers per force, no?

    Anyways, gotta go now. But I'll analyze the rest later.




    May 11 2012, 2:21 pm staxx Post #9



    yeah, no its meant as the way you had shown with your set of triggers. Each player would be set as 1. Also i forgot to clarify the forces up top...

    Force 1 = p1 p2 p3
    Force 2 = p4 (computer allied with Force 1)
    Force 3 = p5 p6 p7
    Force 4 = p8 (computer allied with F3)



    None.

    May 11 2012, 2:27 pm GGmano Post #10

    Mr.Pete-Tong

    Quote from staxx
    Quote from GGmano
    I think you need make your first trigger different:


    Description:

    Execute At Game Start


    make the action add 1 instead of set 1(if 3 player the trigger activated 3 times= force has 3 death) (if 2 player, force has 2 death)

    Don't think thats an issue, as if i put to add 1 then each player would end up with 3 death counts. set insures that it stays at 1 when the trigger is activated over 3 players.

    Yea but the trigger action should affect current player (not force).



    A Legendary Map Maker, Player. Apparently im more than intresting to observe Irl

    Ill try do my best in making all youre watchers happy

    The maps I made are tweaked into perfection and maximum strategy added

    May 11 2012, 6:55 pm staxx Post #11



    Yes, my bad. it's set as current on my map. just put it on here as force by mistake.



    None.

    May 11 2012, 8:19 pm NudeRaider Post #12

    We can't explain the universe, just describe it; and we don't know whether our theories are true, we just know they're not wrong. >Harald Lesch

    Can you outline the idea behind your trigger system? I have a hard time figuring out how it's supposed to work.




    May 12 2012, 8:45 am GGmano Post #13

    Mr.Pete-Tong

    The problem is that he has eaasy system for player spawn turns (3v3 theres no system for each player all spawn at the clock of 0) and then on leaves or uneven scenarios he want a pretty complicated spawn system to start. by complicated i mean it would take up less triggers to start individual spawns. havin 2 player spawn out of 3 player in 1 scenario and 1 out of 3 in another. This system therefore needs a set of spawn system(sitout) triggers for all them scenario that can occur.

    I did actually think out the system and if he did use the guide i told him it would work (but hes lazy, he wants it done by less triggers)

    i put down complete system as short as possibel:

    You need 6 triggers for uneven scenarios (them first triggers that i told him make add force or set current). (the deathcount these triggers sets i call = special scenario )

    You need 6 triggers to start up the system ( or implement start up system in them 6 triggers above ) by start up system all players should have a death count set

    death count systems start: (deathcount are set for players on the team with most players) (deathcount name = rotate tokens)

    (3v2 special scenario 1) p1 0, p2 0, p3 1

    (3v1 special scenario 2) p1 0, p2 1, p3 1

    (2v1 special scenario 3 ) add one death for force bottom(current player) and in condition put suffered at most 0 of death = only will fire once as soon as one player on bottom team has 1 death the trigger will no longer fire. Or use switch to make it only fire one time

    (2v3 special scenario 4) p5 0, p6 0, p7 1

    (1v3 special scenario 5) p5 0, p6 1, p7 1

    (1v2 special scenario 6) add one death for force top(current player) and in condition put suffered at most 0 of death = only will fire once as soon as one player on top team has 1 death the trigger will no longer fire. Or use switch to make it only fire one time

    Trigger
    Players
  • force bottom
  • Conditions
  • force bottom team suffered precise 1 death of special scenario
  • Actions
  • set death count p1 rotate tokens to 0
  • set death count p2 rotate tokens to 0
  • set death count p3 rotate tokens to 1


  • Trigger
    Players
  • force bottom
  • Conditions
  • force bottom team suffered precise 2 death of special scenario
  • Actions
  • set death count p1 rotate tokens to 0
  • set death count p2 rotate tokens to 1
  • set death count p3 rotate tokens to 1


  • Trigger
    Players
  • force bottom
  • Conditions
  • force bottom team suffered precise 3 death of special scenario
  • switch 1 is cleared
  • Actions
  • add 1 death count force bottom rotate tokens
  • set switch 1


  • Trigger
    Players
  • force top
  • Conditions
  • force top team suffered precise 4 death of special scenario
  • Actions
  • set death count p5 rotate tokens to 0
  • set death count p6 rotate tokens to 0
  • set death count p7 rotate tokens to 1


  • Trigger
    Players
  • force top
  • Conditions
  • force top team suffered precise 5 death of special scenario
  • Actions
  • set death count p5 rotate tokens to 0
  • set death count p6 rotate tokens to 1
  • set death count p7 rotate tokens to 1


  • Trigger
    Players
  • force top
  • Conditions
  • force top team suffered precise 6 death of special scenario
  • switch 2 is cleared
  • Actions
  • add 1 death count force top rotate tokens
  • set switch 2


  • Now the spawn system starts when uneven scenarios happen, and theres need for a rotate system that action each time clock hits 0 ( each spawning session )

    an preserve rotate system that keeps setting players death:

    Trigger
    Players
  • Player 1
  • Conditions
  • force bottom team suffered precise 1 death of special scenario
  • p1 suffered precise 0 death of rotate tokens
  • p2 suffered 0 death of rotate tokens
  • p3 suffered 1 death of rotate tokens
  • spawning session occured
  • Actions
  • set death count p1 rotate tokens to 1
  • set death count p2 rotate tokens to 0
  • set death count p3 rotate tokens to 0
  • preserve trigger


  • Trigger
    Players
  • Player 2
  • Conditions
  • force bottom team suffered precise 1 death of special scenario
  • p1 suffered precise 1 death of rotate tokens
  • p2 suffered 0 death of rotate tokens
  • p3 suffered 0 death of rotate tokens
  • spawning session occured
  • Actions
  • set death count p1 rotate tokens to 0
  • set death count p2 rotate tokens to 1
  • set death count p3 rotate tokens to 0
  • preserve trigger


  • Trigger
    Players
  • Player 3
  • Conditions
  • force bottom team suffered precise 1 death of special scenario
  • p1 suffered precise 0 death of rotate tokens
  • p2 suffered 1 death of rotate tokens
  • p3 suffered 0 death of rotate tokens
  • spawning session occured
  • Actions
  • set death count p1 rotate tokens to 0
  • set death count p2 rotate tokens to 0
  • set death count p3 rotate tokens to 1
  • preserve trigger


  • Trigger
    Players
  • Player 1
  • Conditions
  • force bottom team suffered precise 2 death of special scenario
  • p1 suffered precise 0 death of rotate tokens
  • p2 suffered 1 death of rotate tokens
  • p3 suffered 1 death of rotate tokens
  • spawning session occured
  • Actions
  • set death count p1 rotate tokens to 1
  • set death count p2 rotate tokens to 0
  • set death count p3 rotate tokens to 1
  • preserve trigger


  • Trigger
    Players
  • Player 2
  • Conditions
  • force bottom team suffered precise 2 death of special scenario
  • p1 suffered precise 1 death of rotate tokens
  • p2 suffered 0 death of rotate tokens
  • p3 suffered 1 death of rotate tokens
  • spawning session occured
  • Actions
  • set death count p1 rotate tokens to 1
  • set death count p2 rotate tokens to 1
  • set death count p3 rotate tokens to 0
  • preserve trigger


  • Trigger
    Players
  • Player 3
  • Conditions
  • force bottom team suffered precise 2 death of special scenario
  • p1 suffered precise 1 death of rotate tokens
  • p2 suffered 1 death of rotate tokens
  • p3 suffered 0 death of rotate tokens
  • spawning session occured
  • Actions
  • set death count p1 rotate tokens to 0
  • set death count p2 rotate tokens to 1
  • set death count p3 rotate tokens to 1
  • preserve trigger


  • Trigger
    Players
  • force bottom
  • Conditions
  • force bottom team suffered precise 3 death of special scenario
  • current player suffered precise 0 death of rotate tokens
  • spawning session occured
  • Actions
  • set death count current player rotate tokens to 1
  • preserve trigger


  • Trigger
    Players
  • force bottom
  • Conditions
  • force bottom team suffered precise 3 death of special scenario
  • current player suffered precise 1 death of rotate tokens
  • spawning session occured
  • Actions
  • set death count current player rotate tokens to 0
  • preserve trigger


  • ........ Same with scenarios 4,5,6 just on top team

    Note: you might need switch to assure that those triggers only fire one time each time clock hits 0(spawn seesion)

    Post has been edited 2 time(s), last time on May 12 2012, 9:19 am by GGmano.



    A Legendary Map Maker, Player. Apparently im more than intresting to observe Irl

    Ill try do my best in making all youre watchers happy

    The maps I made are tweaked into perfection and maximum strategy added

    May 12 2012, 7:15 pm staxx Post #14



    @ NudeRaider - Basically, the game is set with 3 players on each team and 1 computer for each team just like original desert strike.

    Now, on this version when its 3v3 and the timer reaches 0 instead of just one person spawning for each team, all 3 players on each team spawn at the same time.

    When someone leaves the game, it becomes 3v2. So to make things even, i would like the team that has the 2 players to spawn both players and the team that has 3 players to spawn 2 players while 1 person on the team of 3 sits out and that sit out gets rotated through the entire team of 3.

    Someone leaves again and makes the game 3v1. Same idea except now 2 people sit out on the team of 3 and gets cycled.

    Timer Reaches 0
    vvvvvvvvvvvv

    3Top vs 3Bottom = 3 Top Team Spawn - 3 Bottom Team Spawn
    3Top vs 2Bottom = 2 Top Spawn 1 Top Sit Out - 2 Bottom Spawn
    3Top vs 1Bottom = 1 Top Spawn 2 Top Sit Out - 1 Bottom Spawn

    Make sense?

    @GG - I'll give it a shot, we'll test tonight if you're on.


    UPDATE
    Everything is up and working now, thank you everyone.

    Post has been edited 2 time(s), last time on May 13 2012, 5:19 am by staxx.



    None.

    Options
      Back to forum
    Please log in to reply to this topic or to report it.
    Members in this topic: None.
    [11:50 pm]
    O)FaRTy1billion[MM] -- nice, now i have more than enough
    [11:49 pm]
    O)FaRTy1billion[MM] -- if i don't gamble them away first
    [11:49 pm]
    O)FaRTy1billion[MM] -- o, due to a donation i now have enough minerals to send you minerals
    [2024-4-17. : 3:26 am]
    O)FaRTy1billion[MM] -- i have to ask for minerals first tho cuz i don't have enough to send
    [2024-4-17. : 1:53 am]
    Vrael -- bet u'll ask for my minerals first and then just send me some lousy vespene gas instead
    [2024-4-17. : 1:52 am]
    Vrael -- hah do you think I was born yesterday?
    [2024-4-17. : 1:08 am]
    O)FaRTy1billion[MM] -- i'll trade you mineral counts
    [2024-4-16. : 5:05 pm]
    Vrael -- Its simple, just send all minerals to Vrael until you have 0 minerals then your account is gone
    [2024-4-16. : 4:31 pm]
    Zoan -- where's the option to delete my account
    [2024-4-16. : 4:30 pm]
    Zoan -- goodbye forever
    Please log in to shout.


    Members Online: Ultraviolet, Sylph-Of-Space, Roy