• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by TumbaBit · Mar 11, 2013 at 04:56 PM · javascriptbce0017

tough syntax ? error help ...

BCE0017: The best overload for the method 'ranDrop.ranSword(Object, Object, Object, Object)' is not compatible with the argument list '(String, String, String)'.

Hi guys :) I really need your help with this error. I've tried everything i could think of and i can't really use sites for debugging since the code for making the random numbers is different in unity. I'm making a random item generator for my RPG. Here's the code.

 var frontAdjStr = ["Fabolous", "Awesome", "Rusty", "Old", "Shiny", "Brand New", "Patentet", "Golden", "Iron", "Copper", "Steel", "Diamond", "Ruby", "Emerald", "Saphire", "Rare", "Common", "Cheap", "Ugly", "Smelly", "Wooden", "Homemade", "Glass", "Rubber", "Paper", "Cardboard", "Goblin", "Orc", "Huge", "Small", "Tiny", "Big", "Dragon Slaying", "Monster Slaying", "Goblin Slaying", "Orc Slaying", "Troll Slaying", "Burning", "Ice", "Poisonous", "Daddys", "Legendary", "Hales Own"];
 var wepTypeStr = ["Sword", "Axe", "Bow", "Mace", "Hammer", "Dagger", "Knife", "Longsword", "Shortsword", "Crossbow", "Spear", "Staff"];
 
 var extraAdjStr = ["Absolutely Fabolousness", "Awesomeness"];
 
 function ranSword(frontAdj, wepType, extraAdj1, extraAdj2) {
     print(frontAdj + " " + wepType + " Of " + extraAdj1 + " " + extraAdj2);
 }
 
 ranSword(frontAdjStr[(Mathf.Floor(Random.Range(0, 42)))], wepTypeStr[(Mathf.Floor(Random.Range(0, 10)))], extraAdjStr[(Mathf.Floor(Random.Range(0, 1)))]);


Thank you in advance :)

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by Graham-Dunnett · Mar 11, 2013 at 05:00 PM

Your function expects 4 parameters and you are only giving it 3.

Comment
Add comment · Show 3 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image TumbaBit · Mar 11, 2013 at 05:43 PM 0
Share

Oh.. I most have downloaded a old version of the file. But thank you :D

avatar image TumbaBit · Mar 11, 2013 at 06:16 PM 0
Share

I added it to my game and fixed a semicolon. Unfortunatly i'm now getting a new error i've never seen before. Here's the updated code:

 #pragma strict
 
 var frontAdjStr = ["Fabolous", "Awesome", "Rusty", "Old", "Shiny", "Brand New", "Patentet", "Golden", "Iron", "Copper", "Steel", "Diamond", "Ruby", "Emerald", "Saphire", "Rare", "Common", "Cheap", "Ugly", "Smelly", "Wooden", "Homemade", "Glass", "Rubber", "Paper", "Cardboard", "Goblin", "Orc", "Huge", "Small", "Tiny", "Big", "Dragon Slaying", "Monster Slaying", "Goblin Slaying", "Orc Slaying", "Troll Slaying", "Burning", "Ice", "Poisonous", "Daddys", "Legendary", "Hales Own"];
 var wepTypeStr = ["Sword", "Axe", "Bow", "Mace", "Hammer", "Dagger", "Knife", "Longsword", "Shortsword", "Crossbow", "Spear", "Staff"];
 
 var extraAdjStr = ["Absolutely Fabolousness", "Awesomeness"];
 
 function ranSword(frontAdj, wepType, extraAdj) {
     print(frontAdj + " " + wepType + " Of " + extraAdj);
 
 ranSword(frontAdjStr[(Mathf.Floor(Random.Range(0, 42)))], wepTypeStr[(Mathf.Floor(Random.Range(0, 10)))], extraAdjStr[(Mathf.Floor(Random.Range(0, 1)))]);
 }
 
 function Update () {
 
 }

And here's the error: Internal compiler error. See the console log for more information. output was:BCE0011: An error occurred during the execution of the step 'Boo.Lang.Compiler.Steps.EmitAssembly': 'Empty name is not legal Parameter name: fullname'.

avatar image TumbaBit · Mar 11, 2013 at 06:42 PM 0
Share

Okay i fixed this by deleting an empty javascript file. I have another problem where unity wont even start but that's for another question :)

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

11 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Can someone help me fix my Javascript for Flickering Light? 6 Answers

Checking a set of coordinates with an if statement 0 Answers

Mouse look script help 1 Answer

Trying to instantiate random enemy prefab from array 3 Answers

BCE0017 error with GUI scripts 2 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges