![]() |
|
Login BackGrounds - Printable Version +- LCKB (https://lckb.dev/forum) +-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109) +--- Forum: Guides & Help Section (https://lckb.dev/forum/forumdisplay.php?fid=193) +---- Forum: Help & Support (https://lckb.dev/forum/forumdisplay.php?fid=157) +----- Forum: Ep4 Support (https://lckb.dev/forum/forumdisplay.php?fid=128) +----- Thread: Login BackGrounds (/showthread.php?tid=4727) |
- BayBay - 05-08-2021 Anyony had luck yet? i been trying to figure this out. In Define_Usa.h i have this: //#define CHRISTMAS_LOGO // 크리스 마스 로그인 로고 변경 not sure why it keeps appearing, xmas event is off, i even disable it in event.lod file in event ID:50 I even checked DB in t_event and its also disabled and yeah i know its a client side thing... but still the same results.... - rondo157 - 05-08-2021 Try: Engine\Network\SessionStateExten.cpp(320) if (pInfo != NULL) { if (IS_EVENT_ON(A_EVENT_HOLLOWEEN)) pInfo->SetLogoType(eLOGO_HOLLOWEEN); else if (IS_EVENT_ON(TEVENT_XMAS_2007)) pInfo->SetLogoType(eLOGO_NORMAL); // changed eLOGO_XMAS else pInfo->SetLogoType(eLOGO_NORMAL); } U have 100% turn on xmas event on db, check it mate - Desarija - 05-08-2021 After you turn off the event, reboot the server, login again, then restart the client. Normally then it should disappear. /index.php?/profile/19661-rondo157/&do=hovercard" data-mentionid="19661" href="/index.php?/profile/19661-rondo157/" rel="">@rondo157 Exactly what I meant, thanks ? - Scura - 05-08-2021 7 hours ago, rondo157 said: Try: Engine\Network\SessionStateExten.cpp(320) if (pInfo != NULL) { if (IS_EVENT_ON(A_EVENT_HOLLOWEEN)) pInfo->SetLogoType(eLOGO_HOLLOWEEN); else if (IS_EVENT_ON(TEVENT_XMAS_2007)) pInfo->SetLogoType(eLOGO_NORMAL); // changed eLOGO_XMAS else pInfo->SetLogoType(eLOGO_NORMAL); } U have 100% turn on xmas event on db, check it mate I've take a look in, but seems not working on reza 1776: /monthly_2021_05/image.png.26576c894ce44e7e30ff4101785635e2.png" /> I've also tested this code, just in case, but it doesn't work. I've also checked in the db of the event (t_event and t_eventsettings), and xmas is off... so strange! /monthly_2021_05/image.png.8cd0bc1c9af13cb318fbcb4a48fb7aa6.png" /> - rondo157 - 05-08-2021 XMAS is ID 50!!!!!!!! 50 XMAS 0 0 340 484 486 17 18 21 -1 - BayBay - 05-08-2021 17 hours ago, rondo157 said: Try: Engine\Network\SessionStateExten.cpp(320) if (pInfo != NULL) { if (IS_EVENT_ON(A_EVENT_HOLLOWEEN)) pInfo->SetLogoType(eLOGO_HOLLOWEEN); else if (IS_EVENT_ON(TEVENT_XMAS_2007)) pInfo->SetLogoType(eLOGO_NORMAL); // changed eLOGO_XMAS else pInfo->SetLogoType(eLOGO_NORMAL); } U have 100% turn on xmas event on db, check it mate I keep getting same results for some weird reason: 2 #1 I did this Disabled Event in event.lod 2 #2 Disabled Event in t_event: 2 #3 Disabled in t_event_settings: 2 #4 And now i did this code: Try: Engine\Network\SessionStateExten.cpp(320) if (pInfo != NULL) { if (IS_EVENT_ON(A_EVENT_HOLLOWEEN)) pInfo->SetLogoType(eLOGO_HOLLOWEEN); else if (IS_EVENT_ON(TEVENT_XMAS_2007)) pInfo->SetLogoType(eLOGO_NORMAL); // changed eLOGO_XMAS else pInfo->SetLogoType(eLOGO_NORMAL); } 2 #5 in Define_USA.h these changes were already here: 2 I still have same results with all these changes, did i miss anything? im guessing this might be something inside interface that needs to be edited or replaced. ALL HELP IS WELCOME! THANKS IN ADVANCE! ***I'M ALSO USING REZA'S 2 P.S: I've seen other Last Chaos live servers that also have the Christmas Logo inside client but for some reason when their client loads it loads the old LOGO. - BayBay - 05-08-2021 Well after making ALL OF THESE changes it finally got disabled LOL.... check it out: 2 If someone still haven't fix it do all of these changes and it should work! regards! thanks for every bit of help guys im truly grateful and happy to learn everyday! **Thanks added to everyone that helped! - Scura - 05-09-2021 It works! - BayBay - 05-09-2021 7 hours ago, Scura said: It works! Did you do everything i did? - Scura - 05-09-2021 yea, the real fix was the event.lod ! |