Re: Grand Jeu 2018
Publié : mer. 07/févr./2018 11:50
Tic tac, tic tac : 4 euros
Tic tac, tic tac : La semaine prochaine on devra combien ???SPH a écrit :Tic tac, tic tac : 1 euro
Appliquons donc maintenant cet ordre : rotation pour '1er.bmp'TazNormand a écrit :Code : Tout sélectionner
AVE CESAR : cxcpv f'wvknkugt '1gt.dor', kn hcwv nwk crrnkswgt wpg tqvcvkqp 90° jqtcktg avant d'utiliser '1er.bmp', il faut lui appliquer une rotation 90° horaire
Pour le 1/1, il y a en effet quelques fichiers qui ont ete caché. Changez leur attribut.GallyHC a écrit :Réponse de 1/1 :
Il faut arreter de jouer a cache cache !
Réponse de 1/2 :
Parfois, les fichiers ne disent pas ce qu'ils sont...
Code:Réponse de 1/3 :Code : Tout sélectionner
a$ = "Pwarrwfnoyijse,d cldersl dfrixczhuiuekrpsi snfes jdpifscebnvtq dppaksr vcrei bqvur'xitlasm fsoohnrtt.k.w.k" For i=1 To Len(a$) Step 2 b$ + Mid(a$,i,1) Next i Debug b$
Tous les '.sph' sont a ignorer.
Code:Code : Tout sélectionner
a$ = "Teoobeubqsei itlheemjsrv yk'hp.aesenpukhpu'vb qkszeovwnvxtzz kiars mxitsgwdnicoizrgreojrkb.su" For i=1 To Len(a$) Step 3 b$ + Mid(a$,i,1) Next i Debug b$
2+2*2 font 6 (et pas 8, n'est ce pas shadow)x = 2+2*2
y = 3+3*3
z = 4+4*4
Code : Tout sélectionner
If LoadImage(1,"1er.bmp") ; n'oubliez pas d'avoir tourné l'image de 90° horaire !
Else
MessageRequester("erreur","pas pu charger l'image")
EndIf
larg=ImageWidth(1)
haut=ImageHeight(1)
taille_image=larg*haut
Dim image(taille_image)
;mise en tableau
StartDrawing(ImageOutput(1))
For y=0 To haut -1
For x=0 To larg-1
coul=Point(x,y)
image(t)=coul
t=t+1
Next x
Next y
StopDrawing()
; rouge
For i=0 To taille_image -1
r=Red(image(i)) !213
Sortie_r.s = Sortie_r.s +Chr(r)
Next i
Debug Sortie_r.s
Code : Tout sélectionner
x1=41
y1=18
OpenWindow(0, 0, 0, x1,y1, "Plot Exemple", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
If CreateImage(0, x1,y1) And StartDrawing(ImageOutput(0))
sph$="Encore bravo : pourvu que tu sois dans les temps car la pendule avance : tic tac tic tac tic tac... Les 10 euros s'eloignent petit a petit. "
sph$+"Si tu veux continuer, rends toi immediatement a cette adresse : 'http://memolink.free.fr/game2018.zip'. BONNE CHANCE..."
sph$+" "
nombre=1
x=0
y=y1-1
cle=144
un_sur_2= 1
;;;;;;;;;;;;;;;;;;;;;;
Repeat
If nombre<=Len(sph$)
z=Asc(Mid(sph$,nombre,1))!cle
If un_sur_2=1
nombre+1
Plot(x, y, RGB(Random(255),Random(255),z))
Else
Plot(x, y, RGB(Random(255),Random(255),Random(255)))
EndIf
If un_sur_2=1
If cle=12
cle=144
Else
If cle=144
cle=217
Else
If cle=217
cle=12
EndIf
EndIf
EndIf
EndIf
un_sur_2+1
un_sur_2%2
x+1
If x>=x1
x=0
y-1
EndIf
If y<0
Break
EndIf
Else
Break
EndIf
ForEver
StopDrawing()
ImageGadget(0, 0, 0, x1, y1, ImageID(0))
ok:
Repeat
Event = WaitWindowEvent()
Until Event = #PB_Event_CloseWindow
EndIf