Author |
Message |
Topic: Parsing CSV to a list variable |
hannerii
Replies: 5
Views: 2504
|
Forum: CMUD General Discussion Posted: Thu Apr 15, 2010 10:42 pm Subject: Parsing CSV to a list variable |
So would I want a seperate string list with the different wounds that include commas then do a comparison or something? I try not to be surprised with Simutronics. Hell I can't even get a response fr ... |
Topic: Parsing CSV to a list variable |
hannerii
Replies: 5
Views: 2504
|
Forum: CMUD General Discussion Posted: Thu Apr 15, 2010 12:49 pm Subject: Parsing CSV to a list variable |
Hello everyone, I have been trying to parse a variable length CSV output into a list and as of yet have had no luck. Although I am using this in DragonRealms (Simutronics) i think this would be a uni ... |
Topic: #STW |
hannerii
Replies: 8
Views: 3871
|
Forum: CMUD General Discussion Posted: Tue Oct 21, 2008 11:25 pm Subject: #STW |
So if i want to run through a loop and output stuff to the same status window i would use #STW {info to add} {class with stw} {stw static name} yes? |
Topic: #STW |
hannerii
Replies: 8
Views: 3871
|
Forum: CMUD General Discussion Posted: Tue Oct 21, 2008 7:27 pm Subject: #STW |
Ayes, and as it is i am using the + before the string and it still doesn't keep it in the same window mate. |
Topic: #STW |
hannerii
Replies: 8
Views: 3871
|
Forum: CMUD General Discussion Posted: Sun Oct 19, 2008 3:27 pm Subject: #STW |
Alias ParseRoomOccupants:
#VAR RoomOccupants {}
#VAR tmpo {%1};
;;clean up the list of names and turn it into a string list;
#VAR tmpo %replace( @tmpo, "and", "|")
#VAR tmpo %replace( @ ... |
Topic: #STW |
hannerii
Replies: 8
Views: 3871
|
Forum: CMUD General Discussion Posted: Sun Oct 19, 2008 3:01 pm Subject: #STW |
Alias: ParseRoomContents{
#LOOPDB @ExtraMessages {
#VAR tmpc %replace( @tmpc, %key, %val)
};
#VAR RoomContentsFullNames %replace( @tmpc, ",", "|");
#VAR NumRoomItems %numitems( @RoomC ... |
Topic: #STW |
hannerii
Replies: 8
Views: 3871
|
Forum: CMUD General Discussion Posted: Sun Oct 19, 2008 2:48 pm Subject: #STW |
Hey everyone, Im using a trigger that calls two aliases. I parses the room description for items and people then outputs it to a Status window using #STW (text). The problem i am having is that it k ... |
|