Poll | | What game does everyone play now? | Starcraft 2 | | 26% | [ 8 ] | Warcraft 3 | | 35% | [ 11 ] | League of Legends | | 19% | [ 6 ] | World of Warcraft | | 0% | [ 0 ] | Diablo 2 | | 0% | [ 0 ] | No games at all | | 10% | [ 3 ] | Other game not listed | | 10% | [ 3 ] |
| Total Votes : 31 |
|
|
| haha my b guys | |
| | Author | Message |
---|
Serenity09 Moderator
| Subject: haha my b guys Thu Jul 14, 2011 4:47 pm | |
| sooo i've had a shit week like a really really bad week
you guys mighta noticed ive only been playing diablo well thats cuz i don't feel like talking at all, and no1 talks in diablo (last night when my bot went up it was by accident)
anyways i'll try to be around for the map contest, but i probably wont be entering my map into it and if i do, it'll only be like 20% done
but yeah this stuff always happens the week of my birthday its crazy | |
| | | AmAzIn[G] Commander
| Subject: Re: haha my b guys Thu Jul 14, 2011 5:19 pm | |
| - Serenity09 wrote:
- sooo
i've had a shit week like a really really bad week
you guys mighta noticed ive only been playing diablo well thats cuz i don't feel like talking at all, and no1 talks in diablo (last night when my bot went up it was by accident)
anyways i'll try to be around for the map contest, but i probably wont be entering my map into it and if i do, it'll only be like 20% done
but yeah this stuff always happens the week of my birthday its crazy Ive been gone most of this week and last week. I haven't had anytime until recently to work on my map. (pat being a hardass doesn't help either) We might as well move the due date later because it's only you,bacon, and me. And even bacon isn't finished. Actually I'm more finished than you prolly seren lol. | |
| | | Eat_bacon_daily Captain
| Subject: Re: haha my b guys Thu Jul 14, 2011 7:10 pm | |
| I agree you cant really test my map yet... but if we extend ill prob have time to make it testablez | |
| | | Pat1487 Moderator
| Subject: Re: haha my b guys Fri Jul 15, 2011 2:33 am | |
| The end date is up to seren I think i only set it at the 15th cause of mark Then it turned out he was doing something that weekend to so i changed the judge date to the 18th but left the due date at the 15th and just said you can submit till the 18th but it should be done by the 15th (making the real date the 18th) Then I think mark said something about not being there the 18th either, but he would be on the 20th And by that point i wasnt going to change it again, so since i said that "Judging starts on the 18th" i figured it could keep going to the 20th for mark and it was technically still like i said But since mark wont be here till the 20th i guess we can move it to then From what you guys are saying though i doubt 5 more days will be enough If we set it back farther its going to have to be August 1st or after August 16th - AmAzIn[G] wrote:
- Ive been gone most of this week and last week. I haven't had anytime until recently to work on my map. (pat being a hardass doesn't help either) We might as well move the due date later because it's only you,bacon, and me. And even bacon isn't finished. Actually I'm more finished than you prolly seren lol.
If i was being a hardass i wouldnt have said anything at all when you asked for help | |
| | | Kallock Sergeant
| Subject: Re: haha my b guys Fri Jul 15, 2011 3:58 am | |
| Basically the world revolves around mark - Pat1487 wrote:
- If we set it back farther its going to have to be August 1st or after August 16th
August 1st: My bro's bday August 16th: My bday ...................................................................................creeper | |
| | | Serenity09 Moderator
| Subject: Re: haha my b guys Fri Jul 15, 2011 12:49 pm | |
| well shucks guys - Spoiler:
thats right i used the word shucks in a sentence suck it
if we did the 16th of august i could actually enter as part of my mass exodus i'm going to be travelling the 23-30th of july and as part of my really shitty week, i'm not really going to have a chance to work on it till the 20th of course, doing it on the 16th is probably really bad luck - Quote :
- If i was being a hardass i wouldnt have said anything at all when you asked for help
patttt finish my map for meeeee its got comments and everything | |
| | | AmAzIn[G] Commander
| Subject: Re: haha my b guys Fri Jul 15, 2011 12:55 pm | |
| we should make it the 16th - Quote :
- If i was being a hardass i wouldnt have said anything at all when you asked for help
It was sarcasm lol. But I don't even know what or how to make a loop (like you said, I need to learn how to use loops lol). | |
| | | Serenity09 Moderator
| Subject: Re: haha my b guys Fri Jul 15, 2011 1:16 pm | |
| so making a loop is pretty simple im sure uve started to realize how important indenting is well it actually has a point in loops here i wrote you an example of how to do it - Code:
-
function testloop takes nothing returns nothing //first we define the structure of the loop using textmacros, eventually you can use different structures, but this is the most basic and useful. //make sure to indent 1 in to start, next count the number of loops you want - for this I'm going to use 5 //!textmacro Loop 5 4 4 3 3 2 2 1 //you can also use even numbers but it doesn't work as well, you have to consider that all odd integers are skipped... basically try to use odds only // 6 // 4 4 // 2 2 // 0 //next call the loop initializer. as stupid as "MasterLoop" sounds, it actually makes sense. Its part of the global trigger stack which controls the game. //you only have to do this once call LoopInit.(gg_MasterLoop) //next we have to register it (idk why the function name is so long, blizzard is crazy) //Replace "testloop" with the name of your function //make sure you have 4 spaces after the last parenthesis here, it has to do with wc3's parsing call RegisterMasterControlLoopEventSyntaxParabolicFunction (loop testloop) //now we say what the loop is going to do loop //replace 5 with the number of loops you defined in your loop structure. GetLebowski() refers the current pointer position in the structure exitwhen GetLebowski() > 5 //sometimes its dangerous to call GetLebowski in certain functions, you just have to memorize which ones //when it is dangerous you should call GetLebowskiTwin //this is just an example function, you should use your own call KickPlayer(Player(GetLebowskiTwin())) //now we need to tell the loop to move to the next place in the structure //don't bother trying to memorize this, just put it in a notepad and copy and paste it - thats what I do call MasterControl.next(GetLebowski.Hack.Hash.Rehack(this.next.prev.next.prev.next.next.prev)) endloop endfunction
//and thats it, not so bad eh? | |
| | | marksoccer Commander
| Subject: Re: haha my b guys Sat Jul 16, 2011 7:59 pm | |
| I feel special | |
| | | Pat1487 Moderator
| Subject: Re: haha my b guys Sat Jul 16, 2011 10:26 pm | |
| | |
| | | Sponsored content
| Subject: Re: haha my b guys | |
| |
| | | | haha my b guys | |
|
Similar topics | |
|
| Permissions in this forum: | You cannot reply to topics in this forum
| |
| |
| |