For some reason i cannot use 2 dots at 1 line for example
ice cold Active Member Trusted Member Member Oct 24, 2016 606 871 43 Canada Jan 25, 2018 #1 For some reason i cannot use 2 dots at 1 line for example
MeshBenth ☒Rustʕ•ᴥ•ʔRedux☒ Member Oct 5, 2017 48 46 8 Parts Unknown Jan 25, 2018 #2 ice cold said: For some reason i cannot use 2 dots at 1 line for example View attachment 2359 Click to expand... C#: var victim = (Fougerite.Player) de.Victim; Server.GetServer().BroadcastNotice(victim.Name + " Killed Admin"); Reactions: ice cold
ice cold said: For some reason i cannot use 2 dots at 1 line for example View attachment 2359 Click to expand... C#: var victim = (Fougerite.Player) de.Victim; Server.GetServer().BroadcastNotice(victim.Name + " Killed Admin");
DreTaX Probably knows the answer... Administrator Jun 29, 2014 4,065 4,486 113 At your house. github.com Jan 27, 2018 #3 MeshBenth said: C#: var victim = (Fougerite.Player) de.Victim; Server.GetServer().BroadcastNotice(victim.Name + " Killed Admin"); Click to expand... ice cold said: For some reason i cannot use 2 dots at 1 line for example View attachment 2359 Click to expand... Always check to avoid null exceptions: if (de.VictimIsPlayer) { var victim =(Fougerite.Player) de.Victim; Server.GetServer().BroadcastNotice(victim.Name+" Killed Admin"); }
MeshBenth said: C#: var victim = (Fougerite.Player) de.Victim; Server.GetServer().BroadcastNotice(victim.Name + " Killed Admin"); Click to expand... ice cold said: For some reason i cannot use 2 dots at 1 line for example View attachment 2359 Click to expand... Always check to avoid null exceptions: if (de.VictimIsPlayer) { var victim =(Fougerite.Player) de.Victim; Server.GetServer().BroadcastNotice(victim.Name+" Killed Admin"); }
ice cold Active Member Trusted Member Member Oct 24, 2016 606 871 43 Canada Jan 27, 2018 #4 DreTaX said: Always check to avoid null exceptions: if (de.VictimIsPlayer) { var victim =(Fougerite.Player) de.Victim; Server.GetServer().BroadcastNotice(victim.Name+" Killed Admin"); } Click to expand... yo thanks
DreTaX said: Always check to avoid null exceptions: if (de.VictimIsPlayer) { var victim =(Fougerite.Player) de.Victim; Server.GetServer().BroadcastNotice(victim.Name+" Killed Admin"); } Click to expand... yo thanks