Search found 118 matches

by ekrem5353
16 Dec 2019, 07:54
Forum: SFS2X Questions
Topic: Word Filter
Replies: 8
Views: 9484

Re: Word Filter

Now I need to correct something. some of the words does not work (?i:nigga) (?i:\baq\b) (?i:\boc\b) (?i:\boç\b) (?i:\bam\b) (?i:\b0c\b) (?i:\b0ç\b) (?i:\bo.c\b) here for example aq, oç, 0ç, ag did not work . but am, o.c worked which one comes first nothing to do with it I guess it is regex related i...
by ekrem5353
16 Dec 2019, 07:18
Forum: SFS2X Questions
Topic: Word Filter
Replies: 8
Views: 9484

Re: Word Filter

ok as a regex it works but only first one works. I added them on wordsFile.txt (?i:asslicker) (?i:bastard) (?i:nigger) (?i:nigga) (?:^|\W)am(?:$|\W) (?:^|\W)aq(?:$|\W) (?:^|\W)oc(?:$|\W) (?:^|\W)oç(?:$|\W) like this when I write ama it passes as it should. but aqa does not pass. How should I add the...
by ekrem5353
13 Dec 2019, 11:29
Forum: SFS2X Questions
Topic: Word Filter
Replies: 8
Views: 9484

Re: Word Filter

As I said. there are words in turkish like sik when you write it alone. it is swear word. but some other normal words contain it. like isik. it shows up i*** as if it is swear word. Users can not write properly. I tried this(?i:\bsik\b) it worked but second word did not work (?i:\bam\b) when users t...
by ekrem5353
13 Dec 2019, 10:50
Forum: SFS2X Questions
Topic: Word Filter
Replies: 8
Views: 9484

Re: Word Filter

I mean if a word foo is in the sentence. like I foo you :) this is a bad word we should catch him. When it is I afoo you or I foon you it should pass ; it is not swear.

or just word foo or . at the start of the sentence or end of the
by ekrem5353
13 Dec 2019, 08:00
Forum: SFS2X Questions
Topic: Word Filter
Replies: 8
Views: 9484

Word Filter

Hi, I am trying to use word filter and I need to add some words as seperate word like when word sik is swear word but isik is not i tried this (?i:\bword\b) (?i:bastard) (?i:nigger) (?i:nigga) (?i:\bsik\b) this worked but words that come after that did not work (?i:\bgöt\b) How can I do that some of...
by ekrem5353
25 Nov 2019, 06:55
Forum: SFS2X Questions
Topic: Some game rooms dont show up in smartfox Zone monitor
Replies: 12
Views: 11975

Re: Some game rooms dont show up in smartfox Zone monitor

And also in these case, those methods were not get called there is trace before these methods.
by ekrem5353
25 Nov 2019, 06:48
Forum: SFS2X Questions
Topic: Some game rooms dont show up in smartfox Zone monitor
Replies: 12
Views: 11975

Re: Some game rooms dont show up in smartfox Zone monitor

We have that code at USER_LEAVE_ROOM event if (npcCount > 0 && realPlayerCount <= 0) { RoomVariable updateGS = new SFSRoomVariable(ReservedRoomVariables.RV_GAME_STARTED, false); updateGS.setGlobal(true); getApi().setRoomVariables(user, room, Arrays.asList(updateGS), true, true, false); for (...
by ekrem5353
22 Nov 2019, 10:58
Forum: SFS2X Questions
Topic: Some game rooms dont show up in smartfox Zone monitor
Replies: 12
Views: 11975

Re: Some game rooms dont show up in smartfox Zone monitor

Hi, I have this code for deleting stuck rooms. but it never gets called because there is trace it shows which room is beeing deleted public StuckRoomRemoveManager(SFSExtension ex) { sfsExtension = ex; sfs = SmartFoxServer.getInstance(); stuckRoomScheduler = sfs.getTaskScheduler().scheduleAtFixedRate...
by ekrem5353
22 Nov 2019, 08:47
Forum: SFS2X Questions
Topic: Some game rooms dont show up in smartfox Zone monitor
Replies: 12
Views: 11975

Re: Some game rooms dont show up in smartfox Zone monitor

Hey, This might be a clue if we can not find it from zone Room room = zone.getRoomByName(roomName); we use this code if(room == null) { MatchExpression playNow = new MatchExpression(RoomProperties.IS_GAME, BoolMatch.EQUALS, true) .and(RoomProperties.NAME,StringMatch.EQUALS,roomName); List<Room> room...
by ekrem5353
22 Nov 2019, 07:31
Forum: SFS2X Questions
Topic: Some game rooms dont show up in smartfox Zone monitor
Replies: 12
Views: 11975

Re: Some game rooms dont show up in smartfox Zone monitor

I tried to get more information about disappearing rooms, one room was not being seen from zone panel and I looked at logs I saw it was created this time 22 Nov 2019 | 09:28:05,306 | INFO | SFSWorker:Ext:16 | entities.managers.SFSRoomManager | | Room created: { Zone: Pisti }, [ SFSGame: BEZ7, Id: 23...
by ekrem5353
19 Nov 2019, 07:16
Forum: SFS2X Questions
Topic: Socket Disconnection after upgrade SFS2.13.6 from 2.11
Replies: 8
Views: 10193

Re: Socket Disconnection after upgrade SFS2.13.6 from 2.11

Hey I had same problem when I moved from 2.11 to 2.13 only websocket clients were getting disconnected. I found that whenever I called cancel method of scheduler ( like this scheduler = SmartFoxServer.getTaskScheduler().schedule scheduler.cancel( ) some of the websocket clients were getting disconne...
by ekrem5353
19 Nov 2019, 06:10
Forum: SFS2X Questions
Topic: Some game rooms dont show up in smartfox Zone monitor
Replies: 12
Views: 11975

Some game rooms dont show up in smartfox Zone monitor

Hi, After I added new features to my game some weird thing has happend. Some game rooms being seen at client side, some users are inside of those game roooms, But I can not see them at SmartFox panel , in the zone monitor. For example there is a game room name BEZ4 I can see it at client side there ...
by ekrem5353
15 Nov 2019, 12:20
Forum: SFS2X Questions
Topic: Closing down without any exception
Replies: 1
Views: 3203

Closing down without any exception

Hi,

Last night smartfox closed down with no visible eception of any sort. Where should I look in order to find more clues that might cause this shut down

Thanks

Go to advanced search