Jump to content

Team Cape

Members
  • Posts

    2607
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Team Cape

  1. testing this now edit: ran it for about 4-5 runs with no issues, how often does the problem happen?
  2. Team Cape

    @acerd

    i think u can go to Home Depot to buy some. generally they stand out in a shady alley nearby. u can pay one $20 for a good time
  3. 2 day ban. i have personal experience with this on like 4 accs
  4. Team Cape

    Time

    Is time passing exceptionally slowly for everybody now? I feel as though the more I work and the less i sleep, the more time slows, almost like it's the same day everyday. Yet I still don't have enough time to do everything.
  5. this goes some beyond the scope of what i've done (i'm in a post-ap high school course), but from what i understand this is very interesting good shit dude
  6. changed it to this - probably uglier this way, but i think it's more in-line with what he wanted char* temp; int cmp; char** pOne = pWords; char** pTwo = pWords; while(*pOne) { while(*pTwo) { cmp = strcmp(*pOne, *pTwo); if(cmp > 0) { temp = *pTwo; *pTwo = *pOne; *pOne = temp; } else if(cmp == 0) { *pTwo = NULL; } pTwo++; } pOne++; }
  7. you could be right - he said this assignment was about learning more about pointers. what were you thinking about how this might be done by dereferencing pointers?
  8. we're designing a pretty short program, and because we rushed into C just a few days ago (we did assembler for a few weeks before), he doesnt expect us to be efficient, but he wants us to be able to think through prompts like this. i think it works, but i cant test it because i'm having strange issues with my compiler - aside from the (very bad) efficiency, does it look alright?
  9. This code is designed to work, not necessarily to be efficient. If it does not work, point me in the right direction, please, or tell me how (and why!) a certain fix would work. This code is meant to delete duplicates in an array of strings and order them by collating sequence. Example: If given the strings "africa", "asia", "africa", "europe" you would get back: "asia", "africa", "europe" void sortUnique (char** pWords) { char* temp; int cmp; for(int i = 0; pWords[i]; i++) { for(int j = (i+1); pWords[j]; j++) { cmp = strcmp(pWords[i], pWords[j]); if(cmp > 0) { temp = pWords[j]; pWords[j] = pWords[i]; pWords[i] = temp; } else if(cmp == 0) { pWords[j] = NULL; } } } }
  10. Team Cape

    hey!

    whats up buddy welcome to the community
  11. Might as well make our clan name 'OSB' so our names would be OSB Gousch or OSB Cape or something like that
  12. I, ken bone, would like to say that the first 3 words of this sentence are true.
  13. Seeing as there are currently no other offers, I offer you the best price currently available: 300m
  14. not fake look it up think bonezone might still be trending on twitter
  15. Ken Bone asks a question during 2nd presidential debate. Major porn website offer him and his wife Connie to do a porn video for $100k because of his meme name. http://www.torontosun.com/2016/10/11/ken-bone-gets-us100000-porn-offer Now the question is... Connie Bone? KEN BONE ON JIMMY KIMMEL:
  16. 60 atk / 67 str / 40 def 61hp / 60 agility / 78 fm / 43 wc / 40 fletching quests: cooks assistant, dorics quest, goblin diplomacy, imp catcher, pirate's treasure, witch's potion (11 QP total) decent starter main, i suppose no bans, has 17 marks of grace, and pyro top/gloves from wintertodt
  17. Xerciano is FletchingNL's username on 07.
  18. will look at all of this on this coming weekend and hopefully have a fix out by sunday-monday cheers
  19. If you're botting, you can always get banned. If you're botting on an account that you care about, you can still get banned - Jagex doesn't care. You need to bot infrequently, maybe 6 hours max in 2 days, and play at least half as much as you bot. If you do this, you'll significantly reduce your ban rates. When I started doing this, my bans started going down by like 80% in frequency.
  20. private scripts have less ban rate, but you also need to be botting smart if you're running such a small farm. Also, wintertoft?
  21. might want it to do it in the downtime between monsters killed when it's finding another monster to attack. if you want to combine that with your idea, you'd set a variable equal to the current time (once again, when it's finding another monster) and update it each time that you picked up an item. but before picking up an item, you'd make a check too see that the difference between the current time and last pick up time was 5 seconds (or whatever time you want to use). if you need any help, feel free to hit me up because i already know what i'd use to make this.
×
×
  • Create New...