ID:179301
 
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!
Saibaman4 wrote:
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!

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
..()


In response to Super16
Super16 wrote:
client/New()
if(world.url==src.address)
src.verbs+=/mob/host/verb/Boot
..()

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))
In response to Air Mapster
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)
In response to Super16
Add 2 things to that so i can add more verbs.And know how to add more Verbs.
In response to Saibaman4
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


In response to Super16
ok,thanx
In response to Super16
Super16 wrote:
Whoops left something out this works watch.

client/New()
if(world.url==src.address)

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