This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 17 matches

by FallFromGrace
Tue Aug 12, 2008 11:13 am
Forum: Scripting Help
Topic: lsort - need two-pass sort :O
Replies: 2
Views: 2587

lsort - need two-pass sort :O

i have a list with such elements: {kelly 15 1} {john 50 4} {jack 80 2} {bill 70 3} {ann 30 2} {james 100 1} so i need to sort it, to get: {john 50 4} {bill 70 3} {jack 80 2} {ann 30 2} {james 100 1} {kelly 15 1} with first sort by 3th value and second sort by 2th value.. maximum that i can get is a ...
by FallFromGrace
Mon Jul 28, 2008 8:55 am
Forum: Scripting Help
Topic: Custom options in procedures
Replies: 1
Views: 1999

Custom options in procedures

i can make default values in my procs, f.e. proc1 {string1 string2 {nocase false}}... but how can i make options?

"[proc1 "asd" "qwe" -nocase]", is it possible?