Log In
Name:
Pass:
Online Members (0)
No members are currently online.
Current Interguild Time:
Sat Apr 27 2024 3:03 pm
Member Chat Box  [click here to enlarge]
Recent Posts and Comments
Tips for round winners:

If you don't have a great idea when you learn that it is your turn, don't just make a round that you don't even think is good. Try to think to come up with a good idea for a round, and then if you can't, then make a round that you don't even think is good.

Also you're encouraged to start the round in this format: "You have one post to [what you have one post to do goes here]"

Additionally don't end the round early. Rounds should be at least close to a day long. If you started the round at night, you can't end it tomorrow morning. If you started it in the morning, you shouldn't end it before you go to bed.

Interrounds:
The people running rounds are ideally supposed to judge approximately 24 hours after they start the round, but from now on if they haven't judged after 30 hours (6 hours late) then anyone is allowed to start a round between rounds, like the guess when Livio will start the next round, guess how many dogs shos has, ect.

You're also allowed to do this if the round has been judged within 30 hours, but the next guy hasn't started their round within 12 hours of the other round being judged.

The catch is of course that the round could end at any time, because these rounds last until the current round is judged and the next round begins.
You may judge rounds however you'd like, but at the end of the round there can only be one winner.

These rounds will be marked as ".5"s in the previous rounds and winners

Previous rounds and winners
Spoiler:
« Forum Index < Random Chat Forum
«Previous | 1, 2, 3, . . . 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, . . . 214, 215, 216 | Next»

jazz
[?] Karma: 0 | Quote - Link
Sunday, September 23 2012, 3:59 pm EST

Karma: 108
Posts: 3050
pm | email
'krotomo' said:
I'll make a sandwich for the poor wheat grass that died to make the bread possible.

How thoughtful.  6/10
'Darvince' said:
Spoiler:

But what about his or her family? 7/10
'sup_mus' said:
My sandwich goes to thomas as a gift for the fiddler discovery

Thing is, I don't think it's actually that widely used. 6/10
'Yuggy' said:
I'll make a sandwich for
Spoiler:

But what about their village? Unless they are nomads? 8/10
'jellsprout' said:
I'll make a sandwich for myself. And unlike anyone else in this round, I'm actually going to do it.

Pics or it didn't happen. 8/10

GOGOGO Yugjel!
Yuggy
[?] Karma: 0 | Quote - Link
Sunday, September 23 2012, 4:45 pm EST
I am a wise goat

Age: 25
Karma: 64
Posts: 1609
Gender: Male
Location: UK
pm | email
You have one post to show off yo skillz
shos
[?] Karma: +1 | Quote - Link
Sunday, September 23 2012, 4:47 pm EST
~Jack of all trades~

Age: 31
Karma: 389
Posts: 8273
Gender: Male
Location: Israel
pm | email
Spoiler:


jellsprout
[?] Karma: 0 | Quote - Link
Sunday, September 23 2012, 5:54 pm EST
Lord of Sprout Tower

Karma: -2147482799
Posts: 6445
Gender: Male
pm | email
  
Code:
close all;clear all;clc;

%Dice probs
p=[0 1:6 5:-1:1];
d=.5+0.5*(-1).^(1:12);

%Chance+Community Chest locations and destinations
CC=[2 17 33];
CCv=[40 41];
CH=[7 22 36];
CHv=[5 11 24 39 40 41];

P={zeros(41,41) zeros(41,41)};
Q=P;

for k=1:2
    
    A=zeros(41,41);
    
    if k==1
        
        %Dice throw probs without doubles into matrix
        for n=1:12
            A=A+diag((p(n)-d(n))*ones(1,41-n),n)/36;
            A=A+diag((p(n)-d(n))*ones(1,n+1),n-40)/36;
        end
        A(41,:)=zeros(1,41);
        A(:,41)=zeros(41,1);
    
        %In Prison
        A(41,[12 14 16 18 20 22])=1/36;
        A(41,10)=25/66;
        A(41,41)=5/11;
    
    else
        
        %Double dice throw probs into matrix
        for n=1:12
            A=A+diag(d(n)*ones(1,41-n),n)/36;
            A=A+diag(d(n)*ones(1,n+1),n-40)/36;
        end
        A(41,:)=zeros(1,41);
        A(:,41)=zeros(41,1);
        
    end
    
    %Go To Jail
    A(:,10)=A(:,10)+A(:,30);
    A(:,30)=zeros(41,1);
    
	Q{k}=A;
    
    %Chance probs into matrix
    [CHx,CHy]=meshgrid(CHv,sum(A(:,CH),2)/17);
    A(:,CHv)=A(:,CHv)+CHy;
    A(:,CH-3)=A(:,CH-3)+A(:,CH)/17;
    A(:,[12 28])=A(:,[12 28])+A(:,CH([1 2]))/17;
    A(:,12)=A(:,12)+A(:,CH(3))/17;
    A(:,[15 25 5])=A(:,[15 25 5])+A(:,CH)*2/17;
    A(:,CH)=A(:,CH)*7/17;
    
    %Community Chest probs into matrix
    [CCx,CCy]=meshgrid(CCv,sum(A(:,CC),2)/17);
    A(:,CCv)=A(:,CCv)+CCy;
    A(:,CC)=A(:,CC)*15/17;
    
    %Go To Jail
    A(:,10)=A(:,10)+A(:,30);
    A(:,30)=zeros(41,1);
    
    P{k}=A;
    
end

%Final chance matrix of starting the turn on square i and ending it on j
K=P{1}+P{2}*P{1}+P{2}*P{2}*P{1};
K(:,41)=K(:,41)+1-sum(K,2);

%Calculate odds
v=null((K)'-eye(41));
v=v/sum(v);
w=v(1:40);
w(10)=v(10)+v(41);

%% Expected pay-out

%Expected amount of times you land on square i during a turn
x=(eye(41)+P{2}+P{2}^2+P{2}^3)'*v;
cc1=(v(7)+[zeros(1,6) 1 zeros(1,34)]*(P{2}*v)+[zeros(1,6) 1 zeros(1,34)]*(P{2}^2*v))/17;
cc2=(v(22)+[zeros(1,21) 1 zeros(1,19)]*(P{2}*v)+[zeros(1,21) 1 zeros(1,19)]*(P{2}^2*v))/17;
cc3=(v(36)+[zeros(1,35) 1 zeros(1,5)]*(P{2}*v)+[zeros(1,35) 1 zeros(1,5)]*(P{2}^2*v))/1;

%Purchase cost of all properties and locations on the board
c=[60 60 0 0 ; 100 100 120 0 ; 140 140 160 0 ; 180 180 200 0 ; 220 220 240 0 ; 260 260 280 0 ; 300 300 320 0 ; 350 400 0 0 ; 200 200 200 200 ; 150 150 0 0];
L=[1 3 2 2 ; 6 8 9 2 ; 11 13 14 2 ; 16 18 19 2 ; 21 23 24 2 ; 26 27 29 2 ; 31 32 34 2 ; 37 39 2 2 ; 5 15 25 35 ; 12 28 2 2];

%Upgrade costs each square
C=zeros(1,40);
C(L)=c;
C=[C;zeros(7,40)];
for i=1:10;
    for j=1:4;
        if i >= 9
            C(1:4,L(i,j))=cumsum(c(i,:))';
            C(5:8,L(i,j))=max(C(1:4,L(i,j)));
        else
            C(2,L(i,j))=sum(c(i,:));
            for n=0:4
               C(3+n,L(i,j))=C(2,L(i,j))+( (3 - (i==1 || i==8 )) * n + 1) * 50*ceil( i/2 ); 
            end
            C(8,L(i,j))=C(7,L(i,j))+(2 - (i==1 || i==8 ))*50*ceil(i/2);
        end
    end
end
C(:,2)=0;

%Calculate expected rents per upgrade
s=[1 3 6 8 9 11 13 14 16 18 19 21 23 24 26 27 29 31 32 34 37 39];
R=zeros(8,40);
R(1,s)=C(1,s)./10-4;
R(1,[3 29 37 39])=[4 27 35 50];
R(2,s)=2*R(1,s);
R(3,s)=C(1,s)./2-20;
R(3,[3 34 37 39])=[20 150 175 200];
R(4,s)=3*R(3,s);
R(4,[9 16 18 19 21 23 37])=[100 200 200 220 250 250 500];
R(5:7,s)=[90 180 270 270 300 450 450 500 550 550 600 700 700 750 800 800 850 900 900 1000 1100 1400 ; 160 320 400 400 450 625 625 700 750 750 800 875 875 925 975 975 1025 1100 1100 1200 1300 1700 ; 250 450 550 550 600 750 750 900 950 950 1000 1050 1050 1100 1150 1150 1200 1275 1275 1400 1500 2000];

%Rents for stations
R(:,5:10:35)=25*meshgrid((cc1 + cc2 + cc3 +1)*[1 2 4 8*ones(1,5)],1:4)';

%Average rent utility
u1=[mod(12-(1:40),40) 2];
u2=[mod(28-(1:40),40) 18];
ru1=(u1.*(Q{1}(:,12)+Q{2}(:,12))')*v+(u1.*(Q{1}(:,12)+Q{2}(:,12))')*(P{2}*v)+(u1.*(Q{1}(:,12)+Q{2}(:,12))')*(P{2}^2*v);
ru2=(u2.*(Q{1}(:,28)+Q{2}(:,28))')*v+(u2.*(Q{1}(:,28)+Q{2}(:,28))')*(P{2}*v)+(u2.*(Q{1}(:,28)+Q{2}(:,28))')*(P{2}^2*v);
rc1=7*cc1;
rc2=7*cc2;
rc3=7*cc3;
R(1,12)=(4*ru1+10*(rc1+rc3))/x(12);
R(2:8,12)=10*(ru1+rc1+rc3)/x(12);
R(1,28)=(4*ru2+10*rc2)/x(28);
R(2:8,28)=10*(ru2+rc2)/x(28);

R(8,:)=R(7,:);

%Map property to square
n=1;
LP=zeros(1,40);
for i=1:10
    for j=1:4
        if L(i,j) ~= 2
            LP(L(i,j))=n;
            n=n+1;
        end
    end
    n=n+1;
end

LP(not(LP)) = [3 7:4:27 30 35 38:40];

%Calculate profit of each square square per investment
Pr=zeros(400,40);
for n=[s 5 12 15 25 28 35]
    Pr(1:C(1,n)/10-1,n)=0;
    for m=1:7
        Pr(C(m,n)/10:C(m+1,n)/10-1,n)=R(m,n)*x(n);
    end
    Pr(C(8,n)/10:400,n)=R(m,n)*x(n);
end

%Profit for each street per investment
y=zeros(400,100);
for i=1:10
    y(:,(1:10)+10*(i-1))=meshgrid(sum(Pr(:,L(i,:)),2),1:10)';
end

%Calculate from what investment each street becomes most profitable
z=zeros(400,3);
z(:,1)=10:10:4000;
for n=1:400;
    [z(n,3) z(n,2)]=max(y(n,:));
end
z(:,2)=ceil(z(:,2)/10);

%bar(1:40,w,1); set(gca,'XLim',[0.5 40.5]); %final chance vector
%mesh(Pr)                                   %average profit per turn of each square as function of investment
%surf(0.1:0.1:10,1:10:4000,y); axis=[0 11 0 4000 0 140];     %average profit per turn for each street as function of investment
  


Spoiler:
Jorster
[?] Karma: 0 | Quote - Link
Sunday, September 23 2012, 6:19 pm EST
mfw

Karma: 168
Posts: 2549
Gender: Male
Location: The Straight Guy's Garage
pm | email
Wut


Quirvy
[?] Karma: +1 | Quote - Link
Sunday, September 23 2012, 6:30 pm EST
  

Karma: 655
Posts: 7753
Gender: Male
pm | email
My photoshop skillz:

  



spooky secret
sup_mus
[?] Karma: 0 | Quote - Link
Sunday, September 23 2012, 7:24 pm EST

Age: 25
Karma: -18
Posts: 242
Gender: Male
pm | email
go to sup_mus account on neopets and see the HATIC score And HATPC score


Sup
krotomo
[?] Karma: 0 | Quote - Link
Sunday, September 23 2012, 7:35 pm EST
The Shepherd

Age: 23
Karma: 249
Posts: 4066
Gender: Male
Location: My chair
pm | email
Mah epic high scores that beat sup_mus

http://www.neopets.com/mygamescores.phtml?randomfriend=kro_cave_upload

BEAT THAT!
Yaya
[?] Karma: +3 | Quote - Link
Sunday, September 23 2012, 7:37 pm EST

Age: 29
Karma: 747
Posts: 5367
Location: Ohio (US)
pm | email
i  TYP;ewdxs gthixszd wityhy m,y elbowe.;/



COMING SOON: A giant meteor. Please.
Give me +karma. Give me +karma.
soccerboy13542
[?] Karma: 0 | Quote - Link
Sunday, September 23 2012, 8:36 pm EST
~*~Soccer~*~

Karma: 450
Posts: 4466
Gender: Male
Location: 1945
pm | email
I typed this with my elbow:

Spoiler:


'Livio' said:
You know, I was thinking of getting an internship at Microsoft, but I'm not sure I want their lameness to rub off on me.
Jorster
[?] Karma: 0 | Quote - Link
Sunday, September 23 2012, 8:49 pm EST
mfw

Karma: 168
Posts: 2549
Gender: Male
Location: The Straight Guy's Garage
pm | email
'soccerboy13542' said:
I typed this with my elbow:

Spoiler:


My above post was not an entry. I'm so skilled, that I saw that coming before I opened the spoiler.


Harumbai
[?] Karma: +1 | Quote - Link
Monday, September 24 2012, 12:26 am EST
[|]-X-[|]

Age: 30
Karma: 260
Posts: 1743
Location: New Zealand
pm | email
My origami skills.



Upcoming HatPC level: Sanctuary, coming soon to an internet browser near you...
snipereborn
[?] Karma: 0 | Quote - Link
Monday, September 24 2012, 2:07 am EST
Fact Squisher

Age: 31
Karma: 136
Posts: 1307
Gender: Male
Location: Arizona, United States
pm | email
Here are my epic-explosion-finding skillz:


Everyone runs faster with a knife.
Shavey Dave
[?] Karma: 0 | Quote - Link
Monday, September 24 2012, 2:48 am EST

Age: 23
Karma: 29
Posts: 1702
Gender: Male
Location: UK
pm | email
i haz twelf cowl i is so skillz.





FlashMarsh
[?] Karma: +1 | Quote - Link
Monday, September 24 2012, 1:12 pm EST

Age: 25
Karma: 99
Posts: 2727
Gender: Male
Location: UK
pm | email


shos
[?] Karma: 0 | Quote - Link
Monday, September 24 2012, 1:38 pm EST
~Jack of all trades~

Age: 31
Karma: 389
Posts: 8273
Gender: Male
Location: Israel
pm | email
'FlashMarsh' said:
Spoiler:
Oh man I knew I should have uploaded here the 100% completed version of GTASA... /not an entry


sup_mus
[?] Karma: 0 | Quote - Link
Wednesday, September 26 2012, 7:51 pm EST

Age: 25
Karma: -18
Posts: 242
Gender: Male
pm | email
THIS IS NOT AN ENTRY DO NOT COUNT THIS PLEASE

when will' whis round end


Sup
snipereborn
[?] Karma: 0 | Quote - Link
Wednesday, September 26 2012, 9:44 pm EST
Fact Squisher

Age: 31
Karma: 136
Posts: 1307
Gender: Male
Location: Arizona, United States
pm | email
This is the round that never ends. It goes on and on my friend. Some people started posting in it not knowing what it was, and they'll continue posting in it forever just because this is the round that never ends...


Everyone runs faster with a knife.
Livio
[?] Karma: 0 | Quote - Link
Thursday, September 27 2012, 3:50 am EST

Age: 31
Karma: 470
Posts: 9620
Gender: Male
Location: Arizona, USA
pm | email
Since I won shos's round but never got a chance to start it yet,

You have one post to list both your favorite part and your least favorite part about the Interguild.

The idea is to come up with some interesting juxtapositions in honor of the IG's birthday today.
shos
[?] Karma: 0 | Quote - Link
Thursday, September 27 2012, 6:27 am EST
~Jack of all trades~

Age: 31
Karma: 389
Posts: 8273
Gender: Male
Location: Israel
pm | email
Least fav:
Spoiler:

most:
Spoiler:


Yuggy
[?] Karma: 0 | Quote - Link
Thursday, September 27 2012, 8:51 am EST
I am a wise goat

Age: 25
Karma: 64
Posts: 1609
Gender: Male
Location: UK
pm | email
'shos' said:
Spoiler:
They loos like they haz skillz, but they are not you. 6/10

'Jellsprout' said:
[TOO LONG FOR RUBBISH SCHOOL COMPUTER TO QUOTE...]
I see you haz xtreme skillz 9/10

'Quirvy' said:
My photoshop skillz:

  
WHY IS THERE DISHWASHER IN CITY???!!! 8/10

'sup_mus' said:
go to sup_mus account on neopets and see the HATIC score And HATPC score
Ok. You haz some skillz 7/10

'krotomo' said:
Mah epic high scores that beat sup_mus

http://www.neopets.com/mygamescores.phtml?randomfriend=kro_cave_upload

BEAT THAT!
SKILLZ 7.5/10

'Yaya' said:
i  TYP;ewdxs gthixszd wityhy m,y elbowe.;/
Your elbow is moe skillz than you. 5/10

'soccerboy13542' said:
I typed this with my elbow:

Spoiler:
I doubt your elbow. 4/10

'Jorster' said:
'soccerboy13542' said:
I typed this with my elbow:

Spoiler:


My above post was not an entry. I'm so skilled, that I saw that coming before I opened the spoiler.
I doubts yo skillz. 4/10

'snipereborn' said:
Here are my epic-explosion-finding skillz:
Skillz of some sort maybe... 5/10

'Shavey Dave' said:
i haz twelf cowl i is so skillz.

THAT IS JUST NOOOOOB 2/10

'FlashMarsh' said:


Super. Skillz. 9/10

SO THE SKILLZ PERSON WHO WINZ IS FLASH OR JELL
buboy24
[?] Karma: 0 | Quote - Link
Thursday, September 27 2012, 10:15 am EST

Age: 24
Karma: 51
Posts: 715
Gender: Male
pm | email
My favorites in Interguild are
Spoiler:

Least favorites are
Spoiler:


It's good to be back.
shos
[?] Karma: 0 | Quote - Link
Thursday, September 27 2012, 10:19 am EST
~Jack of all trades~

Age: 31
Karma: 389
Posts: 8273
Gender: Male
Location: Israel
pm | email
but..but...i *AM* in the picture...


FlashMarsh
[?] Karma: 0 | Quote - Link
Thursday, September 27 2012, 11:53 am EST

Age: 25
Karma: 99
Posts: 2727
Gender: Male
Location: UK
pm | email
You have one post to find me the worst post on the Interguild.
buboy24
[?] Karma: 0 | Quote - Link
Thursday, September 27 2012, 12:01 pm EST

Age: 24
Karma: 51
Posts: 715
Gender: Male
pm | email
/not an entry. Why is there 2 contests at once?


It's good to be back.

« Forum Index < Random Chat Forum
«Previous | 1, 2, 3, . . . 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, . . . 214, 215, 216 | Next»

In order to post in the forums, you must be logged into your account.
Click here to login.

© 2024 The Interguild | About & Links | Contact: livio@interguild.org
All games copyrighted to their respective owners.