Help with SWORDS

StarBlades

Active member
This should explain whats going on.
 

Attachments

  • C__Windows_SYSTEM32_cmd.exe 8_13_2020 10_58_26 AM.png
    C__Windows_SYSTEM32_cmd.exe 8_13_2020 10_58_26 AM.png
    16.2 KB · Views: 524

CutterCross

Active member
The error message explains the problem for you. On lines 26 and 40 there are already defined labels, which means they're also being used somewhere else in your project and / or you imported duplicates of the same script somewhere.
 

StarBlades

Active member
i also want to have textboxes, but it keeps saying "label already defined" at lines 39 and 60. The sword is working perfectly fine.
 

mouse spirit

Well-known member
That error means that when you see like...
goHereNow


goHereNow:

Those are label things.
It makes the code jump to the label it calls.
So see whats at those 2 lines, and maybe just add....
S to the end of the words.

As you cant have two of the same that have a : after it.
Now you can have many places be the same without the :
So if you see
blahBlah

Then after that you see
blahBlah:

If those are yours errors, change to
blahBlahq

blahBlahq:

Change it to anything else is what i mean. But not all willy nilly. Make sure just the stuff causing the errors.
 
Top Bottom