Castle Paradox Down?
Posted: Thu Jul 07, 2011 3:42 am
Is Castle Paradox down at the moment? The game list, nor the forums are not loading for me. Is anyone else here having these troubles?
Yes, it is down. Inferior Minion will fix it sooner or later :)Master K wrote:Is Castle Paradox down at the moment? The game list, nor the forums are not loading for me. Is anyone else here having these troubles?
The Game Forum functions as Help forum.Master K wrote:well...considering that CP goes down a lot, shouldn't there be a help forums for here like CP's help forums?
Code: Select all
plotscript, Splitup, begin
suspend player
suspend caterpillar
walk hero to X(me,18)
wait for hero(me)
walk hero to Y(me,57)
wait for hero(me)
walk hero(me,up,1)
walk hero(1,down,1)
walk hero(2,right,1)
walk hero(3,left,1)
wait for hero(3)
set hero direction(me,down)
set hero direction(1,up)
set hero direction(2,left)
set hero direction(3,right)
wait for hero(3)
show text box(239)
wait for text box
set hero direction(me,left)
wait for hero(me) # these wait for hero(me) I've added might not be needed
wait(10)
set hero direction(me,right)
wait for hero(me) # same as above
wait(10)
show text box(240)
wait for text box
set hero direction(me,left)
wait for hero(me)
set NPC position(2,18,55)
wait for NPC(2)
wait(20)
set NPC direction(2,up)
wait for NPC(2)
wait(20)
set NPC direction(2,right)
wait for NPC(2)
wait(20)
set NPC direction(2,down)
wait for NPC(2)
wait(20)
set NPC position(2,42,61)
set NPC position(3,18,56)
wait for NPC(2)
wait for NPC(3)
wait(20)
set NPC position(3,43,61)
wait for NPC(3)
set hero direction(me,down)
wait for hero(me)
show text box(246)
wait for text box
walk hero(me,down,1)
walk hero(1,up,1)
walk hero(2,left,1)
walk hero(3,right,1)
wait for hero(3)
set hero direction(me,up)
wait for hero(me)
resume caterpillar
resume player
end
plotscript, CanusInn, begin
suspend player
suspend caterpillar
walk hero to X(me,10)
wait for hero(me)
walk hero to Y(me,4)
wait for hero(me)
walk hero(me,up,2)
walk hero(1,down,2)
walk hero(2,up,2)
walk hero(3,down,2)
wait for hero(3)
walk hero(me,right,2)
walk hero(1,left,2)
walk hero(2,left,2)
walk hero(3,right,2)
wait for hero(3)
set hero direction(2,up)
set hero direction(3,down)
wait for hero(3)
fade screen out
play song(22)
wait(85)
fade screen in
wait(1)
show text box(9)
wait for text box
play song(26)
walk hero(me,left,2)
walk hero(1,right,2)
walk hero(2,right,2)
walk hero(3,left,2)
wait for hero(3)
walk hero(me,down,2)
walk hero(1,up,2)
walk hero(2,down,2)
walk hero(3,up,2)
wait for hero(3)
resume caterpillar
resume player
end