Learn Basic JavaScript by Building a Role Playing Game - Step 18

Tell us what’s happening:

I have a problem in step 18

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="./styles.css">
    <title>RPG - Dragon Repeller</title>
    <script src="./script.js"></script>
  </head>
  <body>
    <div id="game">
      <div id="stats">
        <span class="stat">XP: <strong><span id="xpText">0</span></strong></span>
        <span class="stat">Health: <strong><span id="healthText">100</span></strong></span>
        <span class="stat">Gold: <strong><span id="goldText">50</span></strong></span>
      </div>

<!-- Step 18-->

      <div id="controls"
<button1 id="Go to store"></button1>
<button2 id="Go to cave"></button2> 
<button3 id="Fight dragon"></button3></controls>
      </div>

<!-- User Editable Region -->

      <div id="monsterStats"></div>
      <div id="text"></div>
    </div>
  </body>
</html>
/* file: script.js */
let xp = 0;
let health = 100;
let gold = 50;
let currentWeapon = 0;
let fighting;
let monsterHealth;
let inventory = ["stick"];

Your browser information:

User Agent is: Mozilla/5.0 (Linux; U; Android 12; TECNO BF7 Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/122.0.6261.119 Mobile Safari/537.36 OPR/79.0.2254.70805

Challenge Information:

Learn Basic JavaScript by Building a Role Playing Game - Step 18

This isn’t quite what you need to do.

For your #controls element, create three button elements. The first should have the id set to button1 , and the text Go to store . The second should have the id set to button2 , and the text Go to cave . The third should have the id set to button3 , and the text Fight dragon .

  1. You should have three button elements.
  2. Each button should have an id attribute set to button1, button2 and button3 respectively.
  3. Each button element should have text content as per the instructions.
  4. Your opening div tag is missing a closing angle bracket (>).
  5. You have a stray (and incorrect tag) after the closing tag for your third button.

Before JavaScript you must learn this:

Hola como estás. Te cuento que no estás usando apropiadamente el nombre del elemento button. Button1 no existe…

<button1> <--- ESTA MAL

la forma correcta es :

<button id="button1">Go to store</button>

Espero haberte ayudado. Saludos

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.