#141 transport id expansion flag / client version flag

닫힘
image3 년 전을 오픈 · 2개의 코멘트
image 코멘트됨, 3 년 전
아직 콘텐츠가 없습니다.
image 코멘트됨, 3 년 전
협업자

transporters table needs implementation of expansion_flag (Server side option to restrict) and client version flag (To restrict clients having visible option)

transporters table needs implementation of expansion_flag (Server side option to restrict) and client version flag (To restrict clients having visible option)
image 코멘트됨, 3 년 전
협업자
 alter table transporters add column expansion_flag int(10) unsigned not null default 0;
alter table transporters add column min_client_version int(10) unsigned not null default 0;
alter table transporters add column max_client_version int(10) unsigned not null default 0;
  • if min_client_version is set then it will skip if the client version is less
  • if max_client_version is set then it will skip if the client version is higher
  • the expansion_flag works as previously with all the other feature sets, if the transporter/spawn etc is expansion_flag 0 then it always exists, otherwise its setup dependent on the zone expansion flag or the global server xpack flag

see http://cutpon.com:3000/devn00b/EQ2EMu/issues/104 for more on expansion flag

``` alter table transporters add column expansion_flag int(10) unsigned not null default 0; alter table transporters add column min_client_version int(10) unsigned not null default 0; alter table transporters add column max_client_version int(10) unsigned not null default 0; ``` - if min_client_version is set then it will skip if the client version is less - if max_client_version is set then it will skip if the client version is higher - the expansion_flag works as previously with all the other feature sets, if the transporter/spawn etc is expansion_flag 0 then it always exists, otherwise its setup dependent on the zone expansion flag or the global server xpack flag see http://cutpon.com:3000/devn00b/EQ2EMu/issues/104 for more on expansion flag
image 3 년 전가 Close
로그인하여 이 대화에 참여
로딩중...
취소
저장
아직 콘텐츠가 없습니다.