PDA

View Full Version : function onlyInThe(_country:String);


icemart525
04-11-2006, 04:25 AM
onlyInThe("Philippines");

function onlyInThe(_country:String) {
passengerJeepneys = true;
tadpolesAsFood = true;
smallPresident = true;
} :)

newblack
04-11-2006, 05:05 AM
import com.westernatrocities.Fascism;

class America extends ShirtlessDrunkGuy {

private var president:President;

public function America() {

president = new President("bush");
if(president.iq < 90) reElect();

}

private function reElect() : Void {

if(president.opponent.votes > president.votes) {

Fascism.resolveVote("Diebold", president);

}

president.term += 4;

}

}

icemart525
04-11-2006, 06:00 AM
borrowed chunk of your code:

private var president:President;

public function Philippines() {

president = new President("gma");
reElect("Philippines");

}

private function reElect(_country) : Void {

if(president.opponent.votes > president.votes) {

president.votes += (president.opponent.votes - 2000000);
_country.budgetDeficit = _country.budgetDeficit * 2;
_country.military.generals.wealth++;
}

president.term += 4;

}