KorniakJoin Date: 2013-08-09 Post Count: 3538 |
Without:
Player1 does something -> Server -> Player2 is shown the action.
With:
Player1 does something -> Server -X Player2 is not shown the action.
Is it better to have FilteringEnabled on and work around it or is it better to just have FilteringEnabled off? |
|
|
KorniakJoin Date: 2013-08-09 Post Count: 3538 |
Oh, I forgot to say this, but why is it better to do that? |
|
CscLambdaJoin Date: 2014-11-09 Post Count: 46 |
Because if you end up adding a bunch of local scripts that are dependent on functionality that FilteringEnabled restricts, you'll have to rewrite parts of your game to accommodate it when you do turn it on. |
|
chimmihcJoin Date: 2014-09-01 Post Count: 17143 |
Pros of FE:
No moar haxing
CoOoOoOoOl effects
other random stuff
Cons of FE:
Remote event/function delay(Yes this is a problem for newbs to FE spamming their events/functions until lag happens)
I script -~ chimmihc |
|
|
make everything FE compatible & turn it on |
|
|
chimmihcJoin Date: 2014-09-01 Post Count: 17143 |
@BothAngles
Why do you got to hate newbs trying out FE?
There is no reason to tell them to give up learning.
I script -~ chimmihc |
|
KorniakJoin Date: 2013-08-09 Post Count: 3538 |
@chim
It's fine, I hate FE anyway, it's so confusing, and the way you have to work around it ._.
Btw, why you gotta call me a nub?
You could've called me a skrub. |
|
Miro034Join Date: 2009-10-07 Post Count: 6568 |
@chimm
I have to completely agree with that, I don't what his motives are but it's getting on my nerves. |
|
ZawieJoin Date: 2010-07-04 Post Count: 6338 |
FE is super simple. |
|
|
Because that's why
Anyone new to lua trying to use FE will give up. If they get better, they'll use it |
|
|
KapKing47Join Date: 2012-09-09 Post Count: 5522 |
well if ur Game isn't a Game were u could Hack much or something, u could as well just turn it off XD
also I hate the way in FE u gotta always use RemoteEvents and RemoteFunctions -_-
"My Life is going Good... but..." |
|
eLunateJoin Date: 2014-07-29 Post Count: 13268 |
I don't understand what is so difficult to understand about making the server do the authoritative logic |
|
KorniakJoin Date: 2013-08-09 Post Count: 3538 |
Wait, if you are working on a singleplayer game, is it better to not have FilteringEnabled on? Since it's singleplayer? |
|
|
^
They can still exploit.
Like come on. Just use it. What's the big deal? There are more ups than downs in FE. |
|
KorniakJoin Date: 2013-08-09 Post Count: 3538 |
@above, They can still exploit, but what's the point? There's no one to feel the effects. And if I have LocalScripts in my game, how would I use REs(RemoteEvents)?
Sorry, I'm a novice scripter, but not TOTALLY novice. |
|
KapKing47Join Date: 2012-09-09 Post Count: 5522 |
LocalScript:
workspace.RemoteEvent:FireServer('Hello World!')
ServerScript:
workspace.RemoteEvent.OnServerEvent:connect(function(plr, msg)
print(plr.Name.. ' said '.. msg)
end)
"My Life is going Good... but..." |
|