Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

JBAddonSpoils.JBLocalMessageSpoils


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
// ============================================================================
// JBLocalMessageSpoils - original by TheForgotten
//
// Copyright 2004 by TheForgotten
//
// $Id: JBLocalMessageSpoils.uc,v 1.1 2007-01-03 20:19:03 jrubzjeknf Exp $
//
// The message of Spoils add-on.
// ============================================================================


class JBLocalMessageSpoils extends LocalMessage;


// ============================================================================
// Variables
// ============================================================================

var localized string PreSpoilsMessage;


// ============================================================================
// GetString
//
// Assemble the message.
// ============================================================================

static function string GetString(optional int Switch,
  optional PlayerReplicationInfo RelatedPRI_1,
  optional PlayerReplicationInfo RelatedPRI_2,
  optional Object OptionalObject)
{
  return (default.PreSpoilsMessage@Weapon(OptionalObject).ItemName);
}


// ============================================================================
// ClientReceive
//
// Play Spoils announcement and make a flash.
// ============================================================================

static simulated function ClientReceive(
  PlayerController PC,
  optional int Switch,
  optional PlayerReplicationInfo RelatedPRI_1,
  optional PlayerReplicationInfo RelatedPRI_2,
  optional Object OptionalObject)
{
  Super.ClientReceive(PC, Switch, RelatedPRI_1, RelatedPRI_2, OptionalObject);

  PC.ClientFlash(0.25, vect(800,400,100));
}


// ============================================================================
// Default properties
// ============================================================================

defaultproperties
{
  PreSpoilsMessage="You have been awarded a"
  bIsUnique=True
  bFadeMessage=True
  Lifetime=5
  DrawColor=(B=0,G=0)
  StackMode=SM_Down
  PosY=0.120000
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Mi 3.1.2007 22:19:04.000 - Creation time: Do 14.8.2014 09:58:42.863 - Created with UnCodeX