This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

!vhost nick vhost.you.choose

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
R
Repdientu
Voice
Posts: 37
Joined: Thu Apr 30, 2009 3:45 am
Location: Viet Nam
Contact:

!vhost nick vhost.you.choose

Post by Repdientu »

Hello

i want to use public command to use on #mychan (my bot has operator)
Eg: !vhost nick nick.vhost.choose

can you help me ?
Thank you
User avatar
CrazyCat
Revered One
Posts: 1236
Joined: Sun Jan 13, 2002 8:00 pm
Location: France
Contact:

Post by CrazyCat »

Your eggdrop needs to be ircop on the network, not just operator on your chan to do that.
R
Repdientu
Voice
Posts: 37
Joined: Thu Apr 30, 2009 3:45 am
Location: Viet Nam
Contact:

Post by Repdientu »

CrazyCat wrote:Your eggdrop needs to be ircop on the network, not just operator on your chan to do that.
yes, my bot is ircops on network. Can you help me ?
s
simo
Revered One
Posts: 1080
Joined: Sun Mar 22, 2015 2:41 pm

Post by simo »

What ircd are you using and what services?
R
Repdientu
Voice
Posts: 37
Joined: Thu Apr 30, 2009 3:45 am
Location: Viet Nam
Contact:

Post by Repdientu »

simo wrote:What ircd are you using and what services?
i am using Unrealircd and anope 2.0.6
s
simo
Revered One
Posts: 1080
Joined: Sun Mar 22, 2015 2:41 pm

Post by simo »

you could take a look at:

http://forum.egghelp.org/viewtopic.php? ... ight=vhost

and

http://forum.egghelp.org/viewtopic.php? ... ight=vhost

i would use hostserv wich is available from anope to have vhost set permanent
if thats what you look for if u seek vhost per session you could use ircds chghost command to set vhosts on users
R
Repdientu
Voice
Posts: 37
Joined: Thu Apr 30, 2009 3:45 am
Location: Viet Nam
Contact:

Post by Repdientu »

simo wrote:you could take a look at:

http://forum.egghelp.org/viewtopic.php? ... ight=vhost

and

http://forum.egghelp.org/viewtopic.php? ... ight=vhost

i would use hostserv wich is available from anope to have vhost set permanent
if thats what you look for if u seek vhost per session you could use ircds chghost command to set vhosts on users
i have read it. but how to set !vhost to another nick by Master/Owner ?
s
simo
Revered One
Posts: 1080
Joined: Sun Mar 22, 2015 2:41 pm

Post by simo »

you didnt explain yet onder what conditions vhosts are set and by whom
User avatar
CrazyCat
Revered One
Posts: 1236
Joined: Sun Jan 13, 2002 8:00 pm
Location: France
Contact:

Post by CrazyCat »

If you want to set vhost using services (as hostserv), it will be complicated because you have to ensure the user is registered.
If you want to use CHGHOST, the script is:

Code: Select all

bind pub n|- !vhost chghost
proc chghost {nick uhost handle chan text} {
   set args [split $text]
   putserv "CHGHOST $args[0] $args[1]"
}
Note that it's the basics, no control are made in this short proc.
User avatar
ComputerTech
Master
Posts: 399
Joined: Sat Feb 22, 2020 10:29 am
Contact:

Post by ComputerTech »

Um why not use the anope module bs_fantasy_vhost2 made by azander?
I'll be helpful and post the link :roll:

https://modules.anope.org/index.php?page=view&id=268

or do as the fellas above me said, up to you :P
ComputerTech
User avatar
caesar
Mint Rubber
Posts: 3776
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

What's with the $args[0] in there CrazyCat? TCL doesn't know that stuff. :)

Anyway, here's something:

Code: Select all

bind pub mn !vhost change:vhost
	
proc change:vhost {nick uhost hand chan text} {
	if {[scan $text {%s%s} user host] != 2} {
		puthelp "NOTICE $nick :Error, sytnax is: !vhost <nick> <vhost>"
		return
	}
	puthelp "CHGHOST $user $host"
	puthelp "NOTICE $nick :Changed $user host to $host"
}
Once the game is over, the king and the pawn go back in the same box.
User avatar
CrazyCat
Revered One
Posts: 1236
Joined: Sun Jan 13, 2002 8:00 pm
Location: France
Contact:

Post by CrazyCat »

caesar wrote:What's with the $args[0] in there CrazyCat? TCL doesn't know that stuff. :)
it was the end of day, I used different languages all the day... confused :)
Or I'm writing a new version of tcl :)
User avatar
caesar
Mint Rubber
Posts: 3776
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

No problem, i figured it has to be something like that. :)
Once the game is over, the king and the pawn go back in the same box.
R
Repdientu
Voice
Posts: 37
Joined: Thu Apr 30, 2009 3:45 am
Location: Viet Nam
Contact:

Post by Repdientu »

Thank @All for support. Can check user registered is difficult for me .hummm
s
simo
Revered One
Posts: 1080
Joined: Sun Mar 22, 2015 2:41 pm

Post by simo »

the codes in the urls i posted do exactly that checking if user has a registered nick on join of vhost channel

also if you want to have eggdrop set vhost via hostserv you need to make sure eggdrop has an operblock in anope and perhaps has superadmin that way you can have eggdrop assign vhost to users via anopes hostserv
Last edited by simo on Fri Jul 10, 2020 8:27 am, edited 1 time in total.
Post Reply