Post Your Ctrl-V
#71
6-Day Visit To Rural African Village Completely Changes Woman’s Facebook Profile Picture
You should probably be playing CC2LP1.

Or go to the Chip's Challenge Wiki.
Reply
#72
Well, we all know who won't be in episodes 8-15
ZK1 / ZK2 / ZK3 / ZK3: Abandoned / ZK4 / ZK5

Bronze / Silver / Gold
Reply
#73
[5:50:20 PM] James Anderson: i'm sure if i was cloned that the controller/boss glitch would get in the way Slight frown
Reply
#74
Sealand
ZK1 / ZK2 / ZK3 / ZK3: Abandoned / ZK4 / ZK5

Bronze / Silver / Gold
Reply
#75
I like how you praise every Josh level and then go on his videos and bash every Rock level, despite the fact mine are not in CCLP1 submissions. On the other hand, those were good indeed. Very original stuff.
Reply
#76
(sun) (sun)
ZK1 / ZK2 / ZK3 / ZK3: Abandoned / ZK4 / ZK5

Bronze / Silver / Gold
Reply
#77
<div style="font-size:11.9552px;font-family:monospace;">int Date::getDay() const {
return day;
}
int Date::getMonth() const {
return month;
}
int Date::getYear() const {
return year;
}
void Date::setDay(int d) {
day = d;
}
void Date::setMonth(int m) {
month = m;
}
void Date::setYear(int y) {
year = y;
}
void Date::increment() {
if (!isLastDayInMonth()) {
day++;
} else {
day = 1;
if (month == 12) { // December
month = 1;
year++;
} else {
month++;
}
}
}
bool Date::isEqual(const Date& date2) const {
return day == date2.day && month == date2.month && year == date2.year;
}
bool Date::isLeapYear() const {
return (year%4 ==0 && year % 100 != 0) || year%400 == 0;
}
int Date::lastDayInMonth() const {
if (month == 2 && isLeapYear())
return 29;
else
return DaysInMonth[ month ];
}
bool Date::isLastDayInMonth() const {
return day == lastDayInMonth(); // uses member function
}
void Date::print() const {
std::cout << month << "/" << day << "/" << year;
}
bool sameDay(const Date& date1, const Date& date2) {
return date1.getDay() == date2.getDay() && date1.getMonth() == date2.getMonth();
}
4

<a></a>
You should probably be playing CC2LP1.

Or go to the Chip's Challenge Wiki.
Reply
#78
My ROFLCOPTER goes soi soi soi
.
Glider
.
First chipster ever reported to fill ON THE ROCKS with blocks.

HASHLEVELS.dat (49 CC1 levels)
Reply
#79
The Replacements - Bastards Of Young (Video)
You should probably be playing CC2LP1.

Or go to the Chip's Challenge Wiki.
Reply
#80
http://www.downloadfreeos.com/2013/06/windows-95.html
ZK1 / ZK2 / ZK3 / ZK3: Abandoned / ZK4 / ZK5

Bronze / Silver / Gold
Reply


Forum Jump:


Users browsing this thread: 9 Guest(s)