Uses of Class
org.starhope.appius.user.GeneralUser

Packages that use GeneralUser
org.starhope.appius.game   
org.starhope.appius.game.npc   
org.starhope.appius.game.npc.plebeian   
org.starhope.appius.mb   
org.starhope.appius.messaging   
org.starhope.appius.net   
org.starhope.appius.pay   
org.starhope.appius.services   
org.starhope.appius.types   
org.starhope.appius.user   
 

Uses of GeneralUser in org.starhope.appius.game
 

Methods in org.starhope.appius.game with parameters of type GeneralUser
 void GameEvent.acceptCommand(GeneralUser user, Room room, Zone zone2, String[] command)
          Accept a developer-level command and react to it.
 void Zone.assertStaffLevel(GeneralUser u, int staffLevelRequired)
          Assert that the given user must have a given level of staff privileges
 String Room.getRoomJoinSFSXML(GeneralUser user)
          get the Smart Fox Server XML sequence to be passed to an user upon successfully joining a room (the “joinOK” message)
protected  void Zone.sendBuddyNotice(String buddyName, boolean isOnline, String roomMoniker, String roomTitle, GeneralUser u, int room)
           Sends a buddy notice message to the client
 void Zone.sendModMessage(Room room, GeneralUser user, String message)
           Sends an (anonymous) moderator message to the user
 void Zone.sendOops(GeneralUser u)
          Deprecated. use AbstractUser.sendOops()
 

Uses of GeneralUser in org.starhope.appius.game.npc
 

Subclasses of GeneralUser in org.starhope.appius.game.npc
 class Ejecta
           An Ejecta object is a particle effect, transient effect, or projectile moving through the game world.
 class Particle
          WRITEME: Document this type.
 class Projectile
          WRITEME: Document this type.
 class QuestItemExchanger
          WRITEME: Document this type.
 

Uses of GeneralUser in org.starhope.appius.game.npc.plebeian
 

Subclasses of GeneralUser in org.starhope.appius.game.npc.plebeian
 class Plebeian
           The Plebeian class is a base class for simply scripted NPC:s using the Plebeian structure, which is meant to be a fairly understandable scripting language for basic state machine representation.
 

Uses of GeneralUser in org.starhope.appius.mb
 

Methods in org.starhope.appius.mb with parameters of type GeneralUser
 void UserEnrolment.setUser(GeneralUser newUser)
           
 

Uses of GeneralUser in org.starhope.appius.messaging
 

Methods in org.starhope.appius.messaging with parameters of type GeneralUser
 void MailMessage.setFrom(GeneralUser sender)
           
 void MailMessage.setTo(GeneralUser recipient)
           
 

Uses of GeneralUser in org.starhope.appius.net
 

Methods in org.starhope.appius.net that return GeneralUser
 GeneralUser ServerThread.getUser()
           
 

Uses of GeneralUser in org.starhope.appius.pay
 

Methods in org.starhope.appius.pay with parameters of type GeneralUser
 void PayPalGateway.setUser(GeneralUser userPurchasing)
           
 void AuthorizeNetGateway.setUser(GeneralUser possibleUser)
          Deprecated. 
 

Uses of GeneralUser in org.starhope.appius.services
 

Fields in org.starhope.appius.services declared as GeneralUser
protected  GeneralUser Clodia.myUser
          The user whose lists are being loaded
 

Constructors in org.starhope.appius.services with parameters of type GeneralUser
Clodia(GeneralUser who, Thread parentThread)
          WRITEME: Document this constructor brpocock@star-hope.org
 

Uses of GeneralUser in org.starhope.appius.types
 

Fields in org.starhope.appius.types declared as GeneralUser
private  GeneralUser SpyRequest.spy
          WRITEME: document this field (brpocock@star-hope.org, Nov 19, 2009) spy (SpyRequest)
 

Methods in org.starhope.appius.types with parameters of type GeneralUser
 void GameWorldMessage.setFrom(GeneralUser sender)
          Set the sender of this message
 void SpyRequest.setSpy(GeneralUser newSpy)
           
 void GameWorldMessage.setTo(GeneralUser recipient)
          Set the recipient of this message
 

Uses of GeneralUser in org.starhope.appius.user
 

Subclasses of GeneralUser in org.starhope.appius.user
 class AbstractNonPlayerCharacter
          This is the base class from which NPCs are derived.
 class User
          This class encapsulates all of the user/player information for the game.
 

Methods in org.starhope.appius.user that return GeneralUser
 GeneralUser[] Parent.getFreeChildren()
           
 

Methods in org.starhope.appius.user with parameters of type GeneralUser
static void Nomenclator.removeInstanceNPC(GeneralUser npc)
          Remove an instanced NPC from the caché on its destruction.
 void User.sendGameAction(GeneralUser from, org.json.JSONObject data)
          Deprecated. 
 void User.sendPublicMessage(GeneralUser from, String speech)
          Deprecated. use User.acceptPublicMessage(AbstractUser, String)
 

Constructors in org.starhope.appius.user with parameters of type GeneralUser
Passport(GeneralUser user)