Is it just me or Something with FrameWork?

DreTaX

Probably knows the answer...
Administrator
Jun 29, 2014
4,065
4,486
113
At your house.
github.com
C#:
var victim = (Fougerite.Player) de.Victim;
Server.GetServer().BroadcastNotice(victim.Name + " Killed Admin");
For some reason i cannot use 2 dots at 1 line
for example

View attachment 2359
Always check to avoid null exceptions:

if (de.VictimIsPlayer)
{
var victim =(Fougerite.Player) de.Victim;
Server.GetServer().BroadcastNotice(victim.Name+" Killed Admin");
}