s3rg385's Forum Posts

  • 6 posts
  • Hi guys !

    I bought Q3D a few days ago, and I started to discover this awesome addon. It's realy hard for me because I'm french and not realy good in english, so I don't understand all the documentation, wich is, hum, poor.

    I LOVE oldschools FPS like Wolfenstein, Rise of the Triads, etc... And I want to be able to make and play this type of game, directly in my browser.

    Today, I'm proud to show you the result of my work. It's not finished yet, and there still a lot of work on this, but I think it's just a matter of time.

    I made a sort of 2D editor, you draw your level with classical sprites, one for the walls, one for the floor, in the future for celling, other type of walls, doors, items...

    At the begining of the level, Blocs are spawned at sprites coordinates, and we destroy the sprites.

    The tweak is I rotate the camera in Q3DMaster by (90,90,0) to have this "First Person View". It work fine, moving and jumping are OK but I can move through walls. Floor is "solid" and I can't pass through it, but walls are like... Nothing. I think it's because I had to change gravity vector, but I can't find (ATM ) a solution. Still working...

    And the game is "reverted"...

    I'll continue to work on it, you can follow my steps on Instagram : jcharpentier85

  • Hi. had same problem here but I solved it.

    It's realy simple, you just have to change the "type" of your text box to "Textarea" in it's options.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • OK... Well.... I just find the answer...

    We must add :

    header('Access-Control-Allow-Origin: *');
    [/code:285qvmfn]
    
    Juste after <?php in our PhP file !
    It works fine for me.
  • Hi.

    I have the same problem, no response to show in Construct.

    Here are my PhP and my Blocks :

    <?php
    	$serveur = "127.0.0.1";
    	$db ="oze";
    	$user = "oze";
    	$mdp = "oze";
    	
    	$login = $_GET['oze_login'];
    	$passwd = md5($_GET['oze_passwd']);
    	
    	
    	//Connexion DB
    	$link = mysqli_connect($serveur, $user, $mdp, $db) or die("Erreur de connexion au serveur !" . mysqli_error($link));
    	
    	$qPseudoUnique = "SELECT Pseudo_Joueur, Mdp_Joueur FROM joueur WHERE Pseudo_Joueur = '$login';" or die("Erreur de requête !" . mysqli_error($link)); // Existence ou non d'un pseudo et tests de connexion
    	if ($resPseudo = mysqli_query($link, $qPseudoUnique)) {
    		if (mysqli_num_rows($resPseudo) != 0) { // Si la requête renvois un résultat
    			while ($row = mysqli_fetch_array($resPseudo)) {
    				$pseudoJoueur = $row["Pseudo_Joueur"]; // Attribution du pseudo et mot de passe à des variables
    				$mdpJoueur = $row["Mdp_Joueur"];
    			}
    			if (($pseudoJoueur == $login) && ($mdpJoueur == $passwd)){ // Si login et Mdp valides, connexion
    				echo "Connecté !";
    			}else { // Sinon message d'erreur
    				echo "Vérifiez votre mot de passe !";
    			}
    		}else { // Si pas de compter, inscription d'un nouveau joueur
    			$qNouveau = "INSERT INTO `oze`.`joueur` (`ID_Joueur`, `Pseudo_Joueur`, `Mdp_Joueur`) VALUES (NULL, '$login', '$passwd');" or die("Erreur de requête !" . mysqli_error($link));
    			if ($resultats = mysqli_query($link, $qNouveau)) {
    				echo "Inscription réussie !";
    			}else {
    				echo "Erreur lors de l'inscription !";
    			}
    		}
    	}
    	echo "Boulet !";
    	
    	mysqli_close($link);
    ?>[/code:12am6hg0]
    
    [img="http://i57.tinypic.com/3144b49.png"]
    
    Thank you for your help.
  • Hi !

    Fortunately I've just released two video tutorials in French on my website : outofreality.org

    It cover the beginners tutorial : "Ghost Shooter" (and more in the future ;) )

    Ashley : I'd like to help for the translation :)

    Fran�ais :

    Coup de bol, je viens de sortir deux tutoriels vid�o en Fran�ais sur mon site : outofreality.org

    Ils couvrent le tutoriel d�butant sur le jeu "Ghost Shooter" (et plus � l'avenir ;)

    Ashley : J'aimerais aider � la traduction :)

  • Hi !

    I'm a french gamemaking lover, and I want to learn how to make some little games in HTML5.

    Construct seems to be a realy great tool for that, and I hope more features come soon ! :D

    Thank you for work !

    PS : Sorry for my English, you know, French school is not the good way to learn other language ;)

  • 6 posts