Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 04/18/2017 in all areas

  1. 1 point
    Maybe you know what GameDB.character.skillbag field have 36 slots for fastpanel anchors. But in Game.exe you can use only 16 (by default F1-F8 x2 states) or 24 (with fastfrm plugin F1-F12 x2 states) slots. Now I'll show a few tricks which allow to expand functionality of the fastpanel. This is tested in version 1.3x and should also work in version 2.x. Open the Game.exe in HEX-editor to make changes. Yes all tricks only client-side. Trick 1. Enable third state Find 83 FD 02 56 57 8B D9 7C 04 33 ED EB 09 85 ED 7D Replace with 83 FD 03 56 57 8B D9 7C 04 33 ED EB 09 85 ED 7D Now you can switch 3 states instead of 2 and fill up all 36 slots. Trick 2. Enable F10-F11 keys Compatible with the trick 1 Find 83 FF 08 7F 3A 83 3D D0 A2 66 00 FF 75 31 8B 86 Replace with 83 FF 0A 7F 3A 83 3D D0 A2 66 00 FF 75 31 8B 86 Trick 3. Enable F10-F12 keys Compatible with the trick 1 Find 83 FF 08 7F 3A 83 3D D0 A2 66 00 FF 75 31 8B 86 Replace with 83 FF 0B 7F 3A 83 3D D0 A2 66 00 FF 75 31 8B 86 Trick 4. Enable Tab key for switch panel states Compatible with the tricks 1, 2, 3 Find 83 FF 7B 74 60 81 FF DD 00 00 00 75 0D 6A 11 FF Replace with 83 FF 09 74 60 81 FF DD 00 00 00 75 0D 6A 11 FF Trick 5. Make two panels for 18 slots (F1-F12 + 6 clickable slots) Use trick 3 and 4 for enable F1-F12 keys and Tab key for switch panels Find 83 FF 0C 72 9B BB 0C 00 00 00 8D 9B 00 00 00 00 Replace with 83 FF 12 72 9B BB 12 00 00 00 8D 9B 00 00 00 00 Find 83 FD 0C 0F 82 77 FF FF FF 83 C3 0C 83 FB 24 0F Replace with 83 FD 12 0F 82 77 FF FF FF 83 C3 12 83 FB 24 0F Find 8D 7E 0C 3B F7 7D 1E 8B 83 18 07 00 00 8B 0C B0 Replace with 8D 7E 12 3B F7 7D 1E 8B 83 18 07 00 00 8B 0C B0 Find 00 7C DD 8D 74 6D 00 C1 E6 02 8D 7E Replace with 00 7C DD 8D 74 ED 00 C1 E6 01 8D 7E Find 8D 0C 40 8D 04 8F 8B 04 82 85 C0 74 18 8B 80 98 Replace with 8D 0C C0 8D 04 4F 8B 04 82 85 C0 74 18 8B 80 98 Find B9 0C 00 00 00 F7 F9 33 C0 89 44 24 0D 89 44 24 Replace with B9 12 00 00 00 F7 F9 33 C0 89 44 24 0D 89 44 24 Open scripts/lua/forms/main.clu and replace with frmFast = UI_CreateForm( "frmFast", FALSE, 432, 82, 290, 557, TRUE, FALSE ) --UI_FormSetHotKey( frmFast, ALT_KEY, HOTKEY_T ) UI_ShowForm( frmFast, TRUE ) UI_SetFormStyle( frmFast, 7 ) UI_AddFormToTemplete( frmFast, FORM_MAIN ) UI_SetIsDrag( frmFast, TRUE ) UI_FormSetIsEscClose( frmFast, FALSE ) imgMain1 = UI_CreateCompent( frmFast, IMAGE_TYPE, "imgMain1", 432, 82, 0, 0 ) UI_LoadImage( imgMain1, "texture/ui/frmfast18.tga", NORMAL, 432, 82, 0, 0 ) fscMainF0 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF0", 32, 32, 5, 44 ) fscMainF1 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF1", 32, 32, 39, 44 ) fscMainF2 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF2", 32, 32, 73, 44 ) fscMainF3 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF3", 32, 32, 107, 44 ) fscMainF4 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF4", 32, 32, 141, 44 ) fscMainF5 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF5", 32, 32, 175, 44 ) fscMainF6 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF6", 32, 32, 209, 44 ) fscMainF7 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF7", 32, 32, 243, 44 ) fscMainF8 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF8", 32, 32, 277, 44 ) fscMainF9 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF9", 32, 32, 311, 44 ) fscMainF10 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF10", 32, 32, 345, 44 ) fscMainF11 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF11", 32, 32, 379, 44 ) fscMainF12 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF12", 32, 32, 107, 5 ) fscMainF13 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF13", 32, 32, 141, 5 ) fscMainF14 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF14", 32, 32, 175, 5 ) fscMainF15 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF15", 32, 32, 209, 5 ) fscMainF16 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF16", 32, 32, 243, 5 ) fscMainF17 = UI_CreateCompent( frmFast, FAST_COMMANG_TYPE, "fscMainF17", 32, 32, 277, 5 ) btnFastUp = UI_CreateCompent( frmFast, BUTTON_TYPE, "btnFastUp", 7, 8, 417, 12 + 39 ) UI_LoadButtonImage( btnFastUp, "texture/ui/Nbotton.tga", 7, 8, 82, 2, TRUE ) UI_SetHint( btnFastUp, "Next (Ctrl+[, Ctrl+], Tab)" ) btnFastDown = UI_CreateCompent( frmFast, BUTTON_TYPE, "btnFastDown", 7, 8, 417, 22 + 39 ) UI_LoadButtonImage( btnFastDown, "texture/ui/Nbotton.tga", 7, 8, 82, 12, TRUE ) UI_SetHint( btnFastDown, "Next (Ctrl+[, Ctrl+], Tab)" ) Download frmfast18.tga from https://drive.google.com/open?id=0B-nyWqNUUQcBc0NKNHkzd3VhWm8 and put it in texture/ui folder Thats all. Enjoy!
  2. 1 point
    Краткое описание: lvl-100 фея-151 заточка шмот 150% ( 1 крисстал по 10%) Форж: В кольца +14 гемы(до 9lvl) В бижу +5 гемы(до 3lvl) Максимальная точка +27(Шанс точки динамический) Шапка (+400 хп, 5пр, читан) падают с пурпур.сундуков. Рейты: Соло-Надо убить лесного духа! Пати-Надо убить лесного духа! Дроп-300 Фея-2160 (макс ур. 250, об. фруктами до 145 потом уник фруктами до 250) Данжи! Аббы для фарма маг классов!(1 ур аббы,очень выс.физ защита и пр! Но очень мало хп) Хаос - нужен для 100 ансов (Так же с каждой волной появляются боссы на фонтане!) Затерянный подземный мир - для получение усил.Бог кольц и крыльев с эффектами. Логово Бандитов - для получение 100 оружия! (Мобы очень сложные,так что этот данж не для новичка!) Аврора - для получения усил бог колец! (Так же мобов падает по 2 руны Кэль,мобы не особо жирные!) Параллельный мир - для получение Усил.Бог бижи и крыльев дающие эффект! (Мобы очень сложные как и боссы,у боссов очень много хита) Босс комната - для получения 145-180lvl фруктов +2 к стату со 100% апом! ( Боссы очень сильны! Их всего 4,но так же кроме фруктов с них падает ценный лут!) Логово Эвентов - для получения +14 гемов 6лвл, а так же ПСТ ( 3 уровня, на каждом из них по 2 босса, не для ранней стадии) Болт усилен на 20+% ( В хс тоже) Вои так же усилены на 20+%( В хс тоже) Ссылка: от "паранои" >:D залил от души Ccылка : Disc.Yandex Ccылка : Disc.Google Ccылка : Mediafire Ccылка : Mega.nz Ccылка : My-Files Ccылка : Cloud.Mail Ccылка : 4Shared Ccылка : Mailbigfile Ccылка : Dfiles.ru
  3. 1 point
    Hello. So.. When was the last time you heard about WebGL? WebGL is Web Graphics Library that allows us to generate, display and interact with 3D objects directly in the browser. (Including mobile, since their legacy source is based on it). Since I am a big fan of everything 3D and TOP/PKO used to be my area of expertise, I ran some tests with WebGL and 3D Mesh of TOP/PKO. Since I am no longer in development, because over the years I am simply too expensive for any server to hire me, there is nothing I can do with the results of these experiments, but you as TOP/PKO enthusiast could find it fun or useful and maybe, make these examples into a real functioning thing. All you have to do is put the files on your Web server and open index.php, there I have made small menu, so it's easier for you to navigate and view stuff. (Generally PHP won't open on local machine without even the most basic Web server). Some FAQ's I will answer right away. - Why PHP? Well... There is really no good reason, because it all would work well on plain html, but I have used PHP for a very simple reason. I call it anti-idiot system. If you can't figure out opening, running and investigating these files, there is no reason for you to bother and waste your time. - Whats inside? Few examples with WebGL. Generating, loading and displaying 3D models with interactions in browser, that can be very easily integrated in website to take advantage of DOM element functions in order to make cool 3D interaction for you server's website. (This is basically a challenge for pro's to integrate in their websites and build awesome website that stands out). - What about support? None. I don't care enough to support you, and none of you could possibly pay me enough to integrate this for your websites, so you are on your own here. - Responsive? Yes. Engine, Web Elements, all is responsive. - Limitations? Not really, this is WebGL, it's supported by all the modern browsers including mobile browsers. The only limitation I can think of is your general knowledge. Maybe I will update this thing in the future... Maybe... Download: https://mega.nz/#!RgcGUATD!XUEPcZAW7aNFe8gSS0nEF4AsTNvqL4AqkfnaNuW7LII
  4. 1 point
    [NPC] Пишем собственные функции для диалога [NPC] Диалог с NPC в определенное время
  5. 1 point
    Hello @Fajar! Link was updated. If the program still does not work then download and install Visual Studio 2015 redistributable.
  6. 1 point
    Да, в оригинальном исходнике вывод шел в консоль, я сделал вывод в файл. С русским языком проблем нет.
  7. 1 point
    Hello @xEvo7! functions.lua function CheckItemIsForged(item) return (GetItemForgeParam(item, 0) > 0) end function NoForge(role) -- Checking Look for i = 0, enumEQUIP_RHAND + 1, 1 do local item = GetChaItem(role, 1, i) if (item ~= 0 and item ~= nil) then if (CheckItemIsForged(item) == 1) then return 0 end end end -- Checking Inventory local kbsize = GetKbCap(role) for i = 0, kbsize - 1, 1 do local item = GetChaItem(role, 2, i) if (item ~= 0 and item ~= nil) then if (CheckItemIsForged(item) == 1) then return 0 end end end return 1 end entry.lua function check_can_enter_mapname(role, copy_mgr) if (NoForge(role) == 0) then SystemNotice(role, "You have forged items! You can't enter the map!") return 0 end return 1 end Note: didn't tested
  8. 1 point
    PkoDEV.NET Discord! "All-in-one voice and text chat for gamers that’s free, secure, and works on both your desktop and phone. Stop paying for TeamSpeak servers and hassling with Skype. Simplify your life." - discordapp.com Hello friends! Our community have two Discord servers: PkoDev by @Home - "This is a public chat where we can talk about everything." TOP/PKO/KOP by @Blanquitoh - "I have seen that the other channel is being used mostly for devs so.... i wanted to create one for both. Players and Admins because since i have notice the other discord channel does not have an admin or moderator, it is hard to set up new configurations like new channels for server advertizing, etc... Help this channel growth!" We will be glad to see you in Discord!
  • Newsletter

    Want to keep up to date with all our latest news and information?
    Sign Up
×
×
  • Create New...