- Download and install Codeblock
- Set Graphics in codeblock Click here
- When above steps are completed then open this Repo as a project in code-block.
In line number 193 under loadingscreen() function
readimagefile("C:\\Users\\Acer\\Desktop\\nabincodeblockcheck\\1.2\\Final Projec\\src\\loading.jpg",0,0,getmaxx(),500);
Replace the above path to you current clone Repo path like
readimagefile("this Repo path \\src\\loading.jpg",0,0,getmaxx(),500);
As readimagefile read the image from local path Now we have to give set image path for rest of readimagefile function
readimagefile("C:\\Users\\Acer\\Desktop\\nabincodeblockcheck\\1.2\\Final Projec\\src\\mypic.jpg",40,30,500,500);
to
readimagefile("This Repo path \\ src\\mypic.jpg",40,30,500,500);
on line number 659
and 910