View>Source reveals that the script is formatted (albeit badly), but good ol' HTML ignores whitespace.
PHP Code:
// NPC made by SwedishKing -Y-<br />
function onCreated(){<br />
setshape(1,32,32);<br />
}<br />
function onWarp(){<br />
setlevel2("cherrytown_2c.nw",30,30);<br />
}<br />
<br />
//#CLIENTSIDE<br />
function onPlayertouchsme()<br />
{<br />
if (player.guild == "Cherry")<br />
{<br />
triggerAction(this.x+.5,this.y+.5,"warp",null);<br />
}<br />
else<br />
{<br />
this.chat = "Only Cherry Members!";<br />
}<br />
}