/// command register
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
- St3eT
- Posts: 961
- Joined: Sun Mar 07, 2010 6:50 pm
/// command register
Hello, is possible register /// command?
I need when someone use ///cfg = kick from game for ilegal action
I need when someone use ///cfg = kick from game for ilegal action
- UnAfraid
- L2j Veteran
- Posts: 4199
- Joined: Mon Jul 23, 2007 4:25 pm
- Location: Bulgaria
- Contact:
- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: /// command register
I think he didn't mean to modify but to check when a player enters them.
Since ///geodata doesn't work if you're not a GM server-side, it's possible there are some checks server-side for them, but I don't know about that.
Since ///geodata doesn't work if you're not a GM server-side, it's possible there are some checks server-side for them, but I don't know about that.
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
- St3eT
- Posts: 961
- Joined: Sun Mar 07, 2010 6:50 pm
Re: /// command register
Same ///fly - is only for GM's ..
- UnAfraid
- L2j Veteran
- Posts: 4199
- Joined: Mon Jul 23, 2007 4:25 pm
- Location: Bulgaria
- Contact:
Re: /// command register
I think that's handled in UserInfo where it sends:
maybe that allows you to use client dev commands..
Code: Select all
writeD(_activeChar.isGM() ? 1 : 0); // builder level
- Zoey76
- L2j Inner Circle
- Posts: 7008
- Joined: Tue Aug 11, 2009 3:36 am
Re: /// command register
This.UnAfraid wrote:I think that's handled in UserInfo where it sends:maybe that allows you to use client dev commands..Code: Select all
writeD(_activeChar.isGM() ? 1 : 0); // builder level
Powered by Eclipse 4.34
| Eclipse Temurin 21
| MariaDB 11.3.2
| L2J Server 2.6.3.0 - High Five 
Join our Discord! 

- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: /// command register
That's not a check, just a value. What if players modify that value when receiving the packet?
The question is - is it entirely client-side beside that value?
The question is - is it entirely client-side beside that value?
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
- UnAfraid
- L2j Veteran
- Posts: 4199
- Joined: Mon Jul 23, 2007 4:25 pm
- Location: Bulgaria
- Contact:
Re: /// command register
Alt + g is validated through the server but the /// commands are not sent to the server and they don't do anything at all.jurchiks wrote:That's not a check, just a value. What if players modify that value when receiving the packet?
The question is - is it entirely client-side beside that value?
if you type ///fly only you see it others doesnt sometimes in retail gets buggy and opens skill viwer and u can use skills but only u see them and they don't have effect on u.
- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: /// command register
Yeah, I read those reports, iirc it first showed up when the Gracia Final came out...sometimes in retail gets buggy and opens skill viewer
Never heard of that command, does it actually make your char fly? And if yes, how does the server react to that?if you type ///fly only you see it
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
- Zoey76
- L2j Inner Circle
- Posts: 7008
- Joined: Tue Aug 11, 2009 3:36 am
Re: /// command register
jurchiks wrote:Never heard of that command, does it actually make your char fly? And if yes, how does the server react to that?if you type ///fly only you see it
You don't fly, you "fly backwards", is the effect you see when Baium hits you after waking him up.
Powered by Eclipse 4.34
| Eclipse Temurin 21
| MariaDB 11.3.2
| L2J Server 2.6.3.0 - High Five 
Join our Discord! 

- St3eT
- Posts: 961
- Joined: Sun Mar 07, 2010 6:50 pm
Re: /// command register
when u give ///fly is ,,teleport" 

- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: /// command register
Well, in either case, your character does change position, right? If it does, are there any MoveToLocation or similar packets sent? You could detect that one if it's true.
What does ///cfg do then?
What does ///cfg do then?
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
- MELERIX
- L2j Veteran
- Posts: 6667
- Joined: Sat Sep 23, 2006 11:31 pm
- Location: Chile
- Contact:
Re: /// command register
no, is just visual and only visible for you.
///fly is just to test "fly_away" visual effect.
///fly is just to test "fly_away" visual effect.
- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: /// command register
Doesn't it change your character's location in the end, after the animation?
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
- MELERIX
- L2j Veteran
- Posts: 6667
- Joined: Sat Sep 23, 2006 11:31 pm
- Location: Chile
- Contact:
Re: /// command register
yes, but visual only, you still remain in the same cords, you can notice it when you start to walk/run again.