Jump to content

CouldnoT

VIP
  • Posts

    4706
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by CouldnoT

  1. Do warning points disappear by time?
  2. I spent 3 hours today on it. Thanks a lot for your appreciation.
  3. Parcels near Avispa Rifla are always free, stop being lazy and get one there.
  4. Good job man, perfect location and well chosen objects.
  5. @DyabloxHow long did it take you to make 33k posts ?
  6. Sorry then if I missunderstood you, If I want something i do it myself man I don't pay someone to help me. Yes, I spend a lot of time searching but I succeed in the end.
  7. Why are you racist bro ??
  8. CouldnoT

    Bug Quest

    The old template ruined the idea ☹️☹️
  9. Yes, we have a pretty good gamemode and friendly members and staff. Use this referral : 684791
  10. CouldnoT

    Curând

    800 on is better to be honest ! Less lag and SPAM.
  11. In this section we post tutorials, not creations. You have to explain what you have done so that each member reading your topic understands your snippet.
  12. @SuperArchie Edited : Source : 150x250 resolution :
  13. I have done more, but they are deleted. I want to start this new paper keeper to save my pictures.
  14. Array output Before reading this I suggest you to have a look at the for loop, click. Arrays An Array is a chain of variables of the same type. If we need to declare an array of 10 Integer variables, we can do it like this: Numbers: array [1 .. 10] of Integer; We can access single variables in the array using its index. For example, to put a value in the first variable in the array we can write it as: Numbers[1]:= 30; To put a value in the second variable, use the index 2: Numbers[2]:= 315; Output an array We need to use the for loop in case you want to output an array. As the example shown here : program tab; uses wincrt; type tab = array [1..5] of char; var t:tab; c, j: Integer; begin t[1]:= 'A'; t[2]:= 'B'; t[3]:= 'C'; t[4]:= 'D'; t[5]:= 'E'; for j:=1 to 5 do begin write(' | ', j); end; writeln; for c:=1 to 5 do begin write(' | ' ,t[c]); end; readln; end.
  15. I found a good package for sublime that works perfectly, PM me if you need it.
  16. ???? ??? ???? ??’?? ??? ?? ??????? ??? ???? ??? ??’?? ??????? ??? ???’? ??? ???? ???? ??? ????????? ??????? ?
     

     

  17. Repeat Until loop Unlike the for loop which repeats for a specific number of cycles, the Repeat loop has no counter. It loops until a certain condition occurs (Returns True), then it will go to the next statement after the loop. Example: var Num : Integer; begin repeat Write('Please input a number: '); Readln(Num); until Num <= 0; Writeln('Press any key to close'); Readkey; end. In the previous example, the program enters the loop, then it asks the user to enter a number. If the number is less than or equal to zero, it will exit the loop. If the entered number is greater than zero, the loop will continue.
  18. B-Zone thinking about everyone as always, congratulations.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.