-
Posts
268 -
Joined
-
Last visited
-
Days Won
7
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Posts posted by java
-
-
On 5/3/2025 at 8:13 PM, Jigglypuff said:
Aesthetic is ok, seems very versatile and customizable (wondering if responsiveness for mobile devices is available).
Personally, I would make the inventory section a list like; a single char can carry from 100 to up to 200 items, so it could result a bit stressful with such large graphics (priority is given to the item img, list gives priority to names/IDs). As for storages, if it is thinked in the same way. Search module could also help.
Equipment section could be improved. Something like the alt+q user interface, available in game, including some "expansion" (mouse over descriptions with details - enchants, ie - similarly to divine pride), would be nice. Actually, the whole game can be emulated in browser, pretty sure it could be done in your CP for the equipment window and be customised for your goal.
Aside from fancy things, being a whole new CP (it is completely new or a flux refresh/update?), I would test massively security and privacy.
Really like the content, release updates anytime you have. Following the topic.
Hi thank you for review, and yes this is from scratch, im working now
-
1
-
-
12 hours ago, vitox said:
where i can see pricing? thanks
Discord, beamguide#9797
-
On 4/18/2025 at 8:25 PM, Reyvins said:
is this will release as free or paid?
Next time i will release for free, but now is paid only
-
1
-
-
On 4/19/2025 at 2:47 AM, emirjinn said:
Does this support multiple char servers?
I will consider it
-
Update :
-
2
-
-
-
22 minutes ago, Akbare-2nd said:
create to be able to upload patchers file with sequential names
noted, maybe i will try later , after everything works
-
1
-
-
i manage to create advance viewer information for items at inventory, like ingame
-
1
-
-
18 minutes ago, hendra814 said:
Still alive bro?? How are you
-
8 hours ago, Rynbef said:
It looks very cool. I like the dashboard wipes. Hope u will finally release it. Which programming languages and frameworks/APIs ur using?
U want to overwrite the forum theme instead of style it in the forum itself? That's could be a cool thing.
For Vote u can use one or more stars so that's not duplicated icons. U can use 2 humans for forum as example.
Rynbef~
hi, thank you so much,
i'm using :
1. Next.js
2. React
3. TypeScript
4. Tailwind CSS
5. MySQL
6. phpBB
7. shadcn/ui
8. Server Actions
9. JWT (JSON Web Tokens)
10. Environment Variables
actually I was inspired by fluxcp, but because fluxcp is considered outdated, I want to make it from scratch, for the function, it's the same as fluxcp, there are only a few updates, for example optimizing database performance and realtime api. thanks for the input and suggestions, I really appreciate it, I think this CP is still far from perfect, but I will try as much as possible so that it can be used by everyone, I will make it opensource, and I will push it on github, if anyone wants to contribute, of course I am very happy.
Now I'm working on making the items appear in full in each character's inventory, it may look silly, but I will upload the icon and image directly, so as to minimize errors, hahaSpoiler-
2
-
-
https://discord.gg/Y9egn2sy
silahkan bergabung bagi yang ingin mencoba CP nya-
1
-
-
hi bro semua, saya sedang mengembangkan custom control panel, seperti fluxcp dari scratch, adakah yang mau jadi tester? jika ada tolong hubungi saya di discord. beamguide#9797
-
hai semua, senang akhirnya bisa aktif kembali di private server, saya sedang membuat custom control panel, adakah ide yang ingin di tuangkan? minta saran dan pendapat nya
-
1
-
-
-
things to do :
- make a landing page
- CMS with forum
- embed discord chat box -
Hi everyone, it's been a long time since I visited the this forum, I had thought about making a simpler control panel, I hope there are those here who want to contribute to the control panel that I made, if anyone is interested, please send a message directly. Here is the display, suggestions and input from all of you are very important for the development of this control panel.
SpoilerSpoilerSpoilerSpoilerSpoilerSpoilerSpoiler-
2
-
1
-
2
-
-
i have full source and full script , here the sample :
if someone help me to renew source code, i will release it here,
-
On 6/9/2023 at 8:27 PM, Yukaiii said:
Speak my dears!
Today I'll be making available a very requested script. It's about the "CTF" That CTF from the xyler PK that I've seen several asking HAHA.
There's only one but the script doesn't work. It could be because XileRO is eathena and eamod.
If someone manages to make it work it will be a great achievement for all of us.
I have all the other scripts.it's not only that script, it must have source too
-
On 6/6/2023 at 1:28 AM, Melvant said:
Kinda need help with Custome "clone" pet that look like master, like the hair style,hair color,body style and equipment.
i have some of source code from eAmod thats maybe can be as a clue
but its wont work at latest rAthena
script.c
//pet looks like master BUILDIN_FUNC(petclone) { struct pet_data *pd; TBL_PC *sd=script_rid2sd(st); if(sd==NULL || sd->pd==NULL) return 0; if( (pd = sd->pd) == NULL ) return 0; memcpy( &pd->vd, &sd->vd, sizeof( pd->vd ) ); return 0; } //pet looks like master //tpye & 1 = sex //type & 2 = hair color //type & 4 = cloth dye //type & 8 = hair style //type & 16 = class //type & 32 = weapon //type & 64 = shield //type & 128 = top //type & 256 = middle //type & 512 = bottom BUILDIN_FUNC(petclonetype) { struct pet_data *pd; int type = 0; TBL_PC *sd=script_rid2sd(st); if(sd==NULL || sd->pd==NULL) return 0; if( (pd = sd->pd) == NULL ) return 0; type = conv_num(st,& (st->stack->stack_data[st->start+2])); if( type & 1 ) { pd->vd.sex = sd->vd.sex; } if( type & 2 ) { pd->vd.hair_color = sd->vd.hair_color; } if( type & 4 ) { pd->vd.cloth_color = sd->vd.cloth_color; } if( type & 8 ) { pd->vd.hair_style = sd->vd.hair_style; } if( type & 16 ) { pd->vd.class_ = sd->vd.class_; } if( type & 32 ) { pd->vd.weapon = sd->vd.weapon; } if( type & 64 ) { pd->vd.shield = sd->vd.shield; } if( type & 128 ) { pd->vd.head_top = sd->vd.head_top; } if( type & 256 ) { pd->vd.head_mid = sd->vd.head_mid; } if( type & 512 ) { pd->vd.head_top = sd->vd.head_top; } if( ( pd->vd.class_ == JOB_BABY_BARD || pd->vd.class_ == JOB_BARD || pd->vd.class_ == JOB_CLOWN ) && pd->vd.sex == 0 ) { pd->vd.sex = 1; } if( ( pd->vd.class_ == JOB_BABY_DANCER || pd->vd.class_ == JOB_DANCER || pd->vd.class_ == JOB_GYPSY ) && pd->vd.sex == 1 ) { pd->vd.sex = 0; } return 0; }
old pet_db
5400,Clone,Clone,619,19327,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petclone; },{} 5500,NOVICE_PET_M,Novice Pet Male,619,19328,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petclonetype (2|4|8|128|256|512); },{} 5501,NOVICE_PET_F,Novice Pet Female,619,19329,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petclonetype (2|4|8|128|256|512); },{} 5502,SWORD_PET_M,Swordman Pet,619,19330,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petclonetype (2|4|8|128|256|512); },{} 5503,SWORD_PET_F,Swordwoman Pet,619,19331,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petclonetype (2|4|8|128|256|512); },{} 5504,MAGE_PET_M,Mage Pet Male,619,19332,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petclonetype (2|4|8|128|256|512); },{} 5505,MAGE_PET_F,Mage Pet Female,619,19333,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petclonetype (2|4|8|128|256|512); },{} 5506,ARCHER_PET_M,Archer Pet Male,619,19334,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petclonetype (2|4|8|128|256|512); },{} 5507,ARCHER_PET_F,Archer Pet Female,619,19335,,528,80,30,10,100,250,20,200,100,0,0,100,100,100,{ petclonetype (2|4|8|128|256|512); },{}
Appreciated for the help,Thanks in advance.
Still need ctf?
-
4 hours ago, hendra814 said:
download lite clientnya dimana?
di PM aja hehe atau di telegram : @beamguide or discord : https://discord.gg/q2k4rPY
-
Just now, hendra814 said:
Tester server atau tester apa ni gan?
tester untuk maen di server ane
-
yang bersedia jadi tester PM ane ya gan
-
this is screenshoot with fluxbb inside
buy jupeto coffee
-
Hi all.. i've been searching for fluxcp integrations with forums software like ipb, vb, phpbb, xenforo etc.. i saw 1 addons ( fluxcp fluxbb ) at rathena , provide by jupeto. i know him since at eathena 2006, after searhcing finally i found him. He has been busy for a long time XD, so i asked to him to write again the guide for his addons. after chit chat a bit long, he said : "if you can get at least 50 users to agree with you for me to write a new one, I'll write a new one
" then i decide to write here to ask all of you who need fluxcp forum integrations XD
if any of you agreed, just replay here >.< i will gather all of youthen
thank you before
Beam CP project
in Project Concepts & In Progress
Posted
actually im working for auction house in panel now for my client ( let say, something ask me add custom request), sorry for late update but CP is always on progress