1
Suggestions & Ideas / Re: Questjournal v1
« on: December 19, 2016, 01:42:46 pm »
That's great news, i'm a fan of the journal. You can join gitlab as far as i'm concerned, but it doesn't track triggers (yet), only code.
We're trying to improve the mud. Please check out the following topic along with all of the Macro topics: http://4dimensions.org/forum/index.php/topic,760.0.html
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
eval s some words
insert_word just 1 s
%echo% %s%
replace_word three 2 s
%echo% %s%
%echo% %s.word_count%
%echo% %s.wordat(3)%
eval game poker
global game
if %self.game% == poker
if %cmd% == bid
...
elseif %cmd% == fold
...
else
return 0
else
return 0
eval card 3S
dg_letter num 1 %card%
dg_letter suit 2 %card%
eval numcards 52
eval card1 2H
eval card2 3H
...
eval card52 AS
eval i 1
while %i% < 53
global card%i%
eval i %i% + 1
done
eval player 1
while %player% <= 3
eval i 1
while %i% <= 5
# pick random card
eval c %%random.%numcards%%%
eval card %%card%c%%%
# add card to player
context %player%
eval numcards %self.numcards% + 1
global numcards
eval card%numcards% %card%
global card%numcards%
# remove card from dealer
context 0
eval card%c% %%card%self.numcards%%%
global card%c%
eval numcards %numcards% - 1
global numcards
eval i %i% + 1
done
eval player %player% + 1
done
makeuid mob %id%
%force% %mob% sit
%echo% %mob.room%