• 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 darkal · Mar 07, 2014 at 06:59 PM · arraylistlogincheck

i need a player list help please

heres my script i need it to check the player list to make sure that there is player listed before you can log in

 #pragma strict
 
 var playercount = 0;
 
 var usernames : String = "";
 
 var passwords : String = "";
 
 var user : String = "";
 
 var pass : String = "";
 
 var create : boolean = false;
 
 var home : boolean = true;
 
 var playeradded : boolean = false;
 
 var player = "";
 
 var logged : boolean = false;
 
 var playerlist = new Array();
 
 function Update()
 {
     if(playeradded)
     {
         player = usernames + passwords;
     }
 }
 function OnGUI()
 {
     if(home)
     {
     GUI.Box(Rect(0, 0, 100, 50), playercount.ToString());
     
     
         if(GUI.Button(Rect(0, 50, 100, 50), "create"))
         {
             create = true;
             home = false;
         }
         user = GUI.TextField(Rect(100, 0, 100, 25), user);
         pass = GUI.TextField(Rect(100, 25, 100, 25), pass);
         
         if(GUI.Button(Rect(100, 50, 100, 50), "log in"))
         {
             if(player == user + pass)
             {
                 logged = true;
             }
             else
             {
                 logged = false;
             }
         }
     }
     
     if(create)
     {
         usernames = GUI.TextField(Rect(0, 0, 100, 25), usernames);
         passwords = GUI.TextField(Rect(0, 25, 100, 25), passwords);
         
         if(GUI.Button(Rect(0, 50, 50, 50), "home"))
         {
             home = true;
             create = false;
         }
         if(GUI.Button(Rect(50, 50, 50, 50), "create"))
         {
             playercount += 1;
             playeradded = true;
             home = true;
             create = false;
         }
     }
 }
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

0 Replies

· Add your reply
  • Sort: 

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

20 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Lists: Avoiding ArgumentOutOfRangeException: Argument is out of range errors 1 Answer

unique list of 10 random numbers 4 Answers

How do I check for strings in an array to match up with the index of another array? 1 Answer

Need some help with Array searching logic 1 Answer

A node in a childnode? 1 Answer

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