Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.65 KB | None | 0 0
  1.         foreach ($this->kill->involvedparties_ as $inv)
  2.         {
  3.             <<if(!strcasecmp($inv->getAlliance()->getName(),'None'))
  4.             {
  5.                 if($inv->getAllianceID() != $this->kill->getVictimAllianceID())
  6.                 {
  7.                     $this->invAll[$inv->getAllianceID()] = $inv->getAllianceID();
  8.                 }
  9.             }
  10.             else>>if($inv->getCorpID() != $this->kill->getVictimCorpID())
  11.                 $this->invCorp[$inv->getCorpID()] = $inv->getCorpID();
  12.  
  13.         }
  14.         if(!strcasecmp($this->kill->getVictimAllianceName(), 'None' ))
  15.             <<$this->victimAll[$this->kill->getVictimAllianceID()] = $this->kill->getVictimAllianceID();
  16.         else >>$this->victimCorp[$this->kill->getVictimCorpID()] = $this->kill->getVictimCorpID();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement