ID:270469
 
any suggestions on a good syntax demo(besides Calus Corps')?
I have no clue what a syntax demo is. Calus CORPS evidently doesn't either. His "demo" has very little to do with syntax.

Google doens't know what a syntax demo is, and the first really relevant link it provides on a search is a link to Calus CORPS's page. Answers.com is the same.

Ask.com and Yahoo.com return no relevant results for "syntax demo".

Wikipedia has no entry for Syntax Demo, or anything even remotely related to it.

So no, I have no suggestions.
In response to PirateHead
well,then,a demo that shows you how to make a window come up when typing and entering /help at the pink bar at the bottom of DS.i just called it a syntax demo because thats what Calus Corps is called and thats what it does(atleast what i can tell from the description,as i cannot download it).
In response to Dragon_Fire6564
mob
verb
Help()
var/html = "Help"
src << browse(html,"window=Help")


Now just type Help in the p[ink bar easy as...
In response to A.T.H.K
A.T.H.K wrote:
> mob
> verb
> Help()
> var/html = "Help"
> src << browse(html,"window=Help")
>
>

Now just type Help in the p[ink bar easy as...

how would i hide the verb,though?
In response to Dragon_fire6653
Just use set hidden = 1.

mob
verb
Help()
set hidden = 1
var/html = "Help"
src << browse(html,"window=Help")



-Doh
In response to Dragon_fire6653
just add this too the code.
set hidden = 1
In response to Dragon_fire6653
Or as an alternative to the other suggestions, to make it so it doesn't appear in the Commands tab, but so it can still be seen if you press the spacebar, do this instead:
set category=null