ID:266552
 
mob/verb/Test()
usr<CLICK")
sleep(1)
usr<<"[hi]"


It gives me a missing expression error why?</<browse>
Strange Kidd wrote:
mob/verb/Test()
usr<<browse("<a href=[usr.hi+=1]>CLICK</a>")
sleep(1)
usr<<"[hi]"

You can't put an expression like "usr.hi+=1" inside brackets like that. What were you trying to do with this code?
mob/verb/Test()
usr<<browse("CLICK")
sleep(1)
usr<<"hi"//took out the []

or...
mob/verb/Test(hi as text)
usr<<browse("CLICK")
sleep(1)
usr<<"[hi]"

other wise i dunno
In response to Air Mapster
Sorta like Tanks when you login you choose your weapons and stuff
In response to Strange Kidd
Look up the Topic proc in the reference.