ID:179301
![]() Jan 22 2002, 12:57 pm
|
|
How does the Host get there own Verbs?I know how to code certain people to get there own varbs but not the Host.Plzzzzzzzzzzz tell me.Thanks a bunch!
|
Super16 wrote:
client/New() Ugh. That's the second time you've given this incorrect advice. Have you even tried this code? I guarantee it won't work. [EDIT] It will work occasionally when world.url and client.address are both null. When the game is hosted, world.url is not null and all bets are off. To find the host, either client.address is null (if hosting within DreamSeeker) or client.address is equal to world.address (not world.url). Within client/New() that would be:
if (!src.address || (src.address == world.address))
|
Whoops left something out this works watch.
client/New() if(world.url==src.address) src.verbs+=/mob/host/verb/Boot ..() else .=..() mob/host verb Boot(mob/M as mob in world) del(M) |
client/New()
if(world.url==src.address) src.verbs+=/mob/host/verb/Boot src.verbs+=/mob/host/verb/WorldName ..() else .=..() mob/host verb Boot(mob/M as mob in world) if(!M.client) return else del(M) WorldName(T as text) world.name=T |
Super16 wrote:
Whoops left something out this works watch. Yes, you left out the fact that you totally ignored Air Mapster's post. He said that your if() check to see who's the host will only work under certain conditions, and the correct if() statement is as follows:
if (!src.address || (src.address == world.address))
Lummox JR |
Use this
Ex.
mob/host
verb
Boot(mob/M as mob in world)
if(!M.client)
return 0
else
del(M)
client/New()
if(world.url==src.address)
src.verbs+=/mob/host/verb/Boot
..()