Sorry, die Befehle die ich mein gehen im 40k source scheinbar erst ab GM_LOW_WIZARD.
aber sind prinzipiell alle schon vorhanden ^^
muss man nur die Berechtigungen ändern ^^
Code:
{ "con+", do_stat_plus_amount, POINT_HT, POS_DEAD, GM_LOW_WIZARD },
{ "int+", do_stat_plus_amount, POINT_IQ, POS_DEAD, GM_LOW_WIZARD },
{ "str+", do_stat_plus_amount, POINT_ST, POS_DEAD, GM_LOW_WIZARD },
{ "dex+", do_stat_plus_amount, POINT_DX, POS_DEAD, GM_LOW_WIZARD },
das ändern zu:
Code:
{ "con+", do_stat_plus_amount, POINT_HT, POS_DEAD, GM_PLAYER },
{ "int+", do_stat_plus_amount, POINT_IQ, POS_DEAD, GM_PLAYER },
{ "str+", do_stat_plus_amount, POINT_ST, POS_DEAD, GM_PLAYER },
{ "dex+", do_stat_plus_amount, POINT_DX, POS_DEAD, GM_PLAYER },
dann mit z.B /con+ 90 ---> fügt 90 punkte hinzu, falls max status erreicht wird wird maxstatus gesetzt.