ID:266691
 
how do i make it so if you talk to this guy and you are on his left side then he says blah and if you are on the right side you say hi

<code>mob/guy/verb/Talk() set src in range(1) if(usr.loc = get_step(src,EAST)) src.say("Blah") else if(usr.loc = get_step(src,WESt)) src.say("Hi") else src.emote("snubbs his nose at you.")</code>

Like that.
In response to Foomer
it says missing expression
In response to The_Proud_Soldier
Make it two equal signs. ==