
-----------------------------------
slender0123
Tue Sep 10, 2013 4:54 pm

Just a question, and some guidance needed please!
-----------------------------------
Hey there, yes im a complete noob at programming, ik lol, i was first wondering if it was possible to add delay to a 
put "" statement.. like, lets say..
put "Hello."
Is there a way to have the program basically type that out? Like, have delay before each letter? if so, how would one do that?

Also!

My platformer game is still having some issues, nooby issues, but still..
I want it so that if you jump under a line, you bounce down.. i have it so you can jump ON the line, but right now, if you jump under the line, you super jump, and its kinda funny tbh.. Just some guidance would be nice. thanks!

Platformer code

[code]
const Gravity := 2
var x, y := 100
var y_velocity := 0
var keys : array char of boolean
var tiles : array 0..35, 0..35 of int
setscreen ("offscreenonly,graphics:500;500")
var Height := 150
var Length := 150


loop 
    Input.KeyDown (keys)
    if keys (KEY_UP_ARROW) and y  0 then
        x -= 10
    end if
    if keys (KEY_RIGHT_ARROW) and x < maxx then
        x+= 10
    end if
    
        y_velocity -= Gravity  
    y += y_velocity  

    if y < 0 then  
        y := 0 
        y_velocity := 0
    end if
    
    if Math.DistancePointLine (x,y, 50, 100,150,100) < 15 then
      y := 100
      y_velocity := 0
      if keys (KEY_UP_ARROW) and y 