SYSTEM >> This channel is not avaible yet!

09/20/2013 17:03 propower24#1
Hi guys !

in my private server

Urban Ops and Battle Group.
when I give a normal user I get this message.

SYSTEM >> This channel is not avaible yet!

how to fix this?

as administrator I can access them all

Thanks in advance greetings .
09/20/2013 17:13 InstantBlood#2
You must edit the permissions.
09/20/2013 17:57 propower24#3
Quote:
Originally Posted by InstantBlood View Post
You must edit the permissions.

Thanks, you mean the file rank_permissions?

all permissions are in 1


but nothing changes :facepalm:
09/20/2013 18:55 n4n033#4
Quote:
Originally Posted by propower24 View Post
Thanks, you mean the file rank_permissions?

all permissions are in 1


but nothing changes :facepalm:
no it's not rank permissions, rank permissions = for commands ...
09/20/2013 19:06 xxfabbelxx#5
It have to be written in the channel File.

Something like channel_required_join_permission
09/20/2013 21:32 ~iToXiiC#6
In handle_channel_switch ;)
09/20/2013 23:16 propower24#7
Thanks in advance,

this is my file : Handle_channel_switch


I can do :handsdown:
09/24/2013 11:16 Sleutel#8
Thanks for using my base, you can solve this issue easly.
The permision files aren't fully implemented so you have to manually edit the check.

Just follow the instructions below.

Replace:
Code:
if (TargetChannel == 1 || User.Rank > 2 || TargetChannel == 4)
with:
Code:
if (TargetChannel >= 1 && TargetChannel <= 4)
Goodjob! You just replaced the check of your code.
Make sure you don't use this in public because urban ops & battlegroup aren't fully implemented yet!
09/24/2013 18:01 propower24#9
Quote:
Originally Posted by Sleutel View Post
Thanks for using my base, you can solve this issue easly.
The permision files aren't fully implemented so you have to manually edit the check.

Just follow the instructions below.

Replace:
Code:
if (TargetChannel == 1 || User.Rank > 2 || TargetChannel == 4)
with:
Code:
if (TargetChannel >= 1 && TargetChannel <= 4)
Goodjob! You just replaced the check of your code.
Make sure you don't use this in public because urban ops & battlegroup aren't fully implemented yet!
because, still can not play in urban ops & battlegroup ?

just want to know by chance

Thank you. :handsdown:
09/24/2013 21:07 Sleutel#10
Quote:
Originally Posted by propower24 View Post
because, still can not play in urban ops & battlegroup ?

just want to know by chance

Thank you. :handsdown:
You will need to edit the handle_room_data class, you have to remove the start check that prevents you from starting the game from the code.
09/25/2013 00:39 Maurice#11
Of just remake THE whole permission stuff.. As u want to start à partly done server!
09/25/2013 09:14 Sleutel#12
Quote:
Originally Posted by Willie Wortel View Post
Of just remake THE whole permission stuff.. As u want to start à partly done server!
Well goodluck with that, waste more time on creating a new system for an old source. That isn't clean at all.
09/25/2013 13:28 propower24#13
Quote:
Originally Posted by Sleutel View Post
You will need to edit the handle_room_data class, you have to remove the start check that prevents you from starting the game from the code.
Hello .

This is my file : [Only registered and activated users can see links. Click Here To Register...]

I do not understand much of the source code .

You I can lend a hand in this topic please ,

I need a dirty on this, :D

Thanks advance ^^
09/25/2013 13:49 Sleutel#14
Remove these lines:

Code:
    else if (currentRoom.Channel == 3 && User.Rank < 2)
    {
        currentRoom.send(new PACKET_CHAT("SYSTEM", PACKET_CHAT.ChatType.Whisper, "SYSTEM >> This channel it's not available yet.", 998, "NULL"));
        break;
    }
This should make you able to start the game :)
09/28/2013 13:52 propower24#15
Quote:
Originally Posted by Sleutel View Post
Remove these lines:

Code:
    else if (currentRoom.Channel == 3 && User.Rank < 2)
    {
        currentRoom.send(new PACKET_CHAT("SYSTEM", PACKET_CHAT.ChatType.Whisper, "SYSTEM >> This channel it's not available yet.", 998, "NULL"));
        break;
    }
This should make you able to start the game :)
but still the same :facepalm:

SYSTEM >> This channel is not avaible yet!

Thanks again .