[wip] Ben - NPC
Posted: 06 Jun 2010, 22:18
Feel the mana power growing inside you!
https://forums.themanaworld.org/
Code: Select all
if(@name$ == Mana Potion)
Code: Select all
if(@name$ == "Mana Potion")
Code: Select all
if(@name$ == "Hurnscland" || "hurnscland" ) goto L_Yes;
Code: Select all
set @TEMP, rand(5);
if(@TEMP == 0) goto L_Req0;
if(@TEMP == 1) goto L_Req1;
if(@TEMP == 2) goto L_Req2;
if(@TEMP == 3) goto L_Req3;
if(@TEMP == 4) goto L_Req4;
Code: Select all
set @TEMP, rand(BaseLevel/8);
if(@TEMP == 0) goto L_Req0;
if(@TEMP == 1) goto L_Req1;
if(@TEMP == 2) goto L_Req2;
if(@TEMP == 3) goto L_Req3;
if(@TEMP == 4) goto L_Req4;
Ok, about different answers, connected with big or small characters I agree, but about lvl, I think it's for everybody.lien wrote:I like the concept
but some players aren't good in spelling ( like me )
so
for exampleand I thinkCode: Select all
if(@name$ == "Hurnscland" || "hurnscland" ) goto L_Yes;
should beCode: Select all
set @TEMP, rand(5); if(@TEMP == 0) goto L_Req0; if(@TEMP == 1) goto L_Req1; if(@TEMP == 2) goto L_Req2; if(@TEMP == 3) goto L_Req3; if(@TEMP == 4) goto L_Req4;
L_Req4 is a hard question for high level .Code: Select all
set @TEMP, rand(BaseLevel/8); if(@TEMP == 0) goto L_Req0; if(@TEMP == 1) goto L_Req1; if(@TEMP == 2) goto L_Req2; if(@TEMP == 3) goto L_Req3; if(@TEMP == 4) goto L_Req4;
just a idea .![]()
Lien ...