scripts.lst
...
SCMikey.int ; Mikey the Lizard Dealer in NCR entrance # local_vars=10
...
See to "local_vars=10". Max local_var in the script - 9. You can change this to needed number. Also you can use any local_vars except for already used.
Sorry for my English.
It's hard.
You must choose script to edit :
rndcity
rndcoast
rnddert
rnddesrt
rndecgen
rndmtn
And create all items and critters in the this script. And no guarantee that all will be work normally.
PS: Sorry for my bad English.
killap,
I don't know how write about bugs in English :) I'll be paste some code parts. Hope you'll understand for what is needed. This code already correct.
ncmason.ssl
...
procedure Node048 begin
// set_guard_time; // Commented (c) Avega
set_local_var(LVAR_Guard_Counter...
Wow. Thanks :)
At moment AL very close to final version. I hope in the mod not so much bugs :) But i haven't some end-game pictures and town-map.
In the mod included last seraph&killap fixes.
Two man start translation.
PS: Sorry for my broken English.
2killap,
Scripts: mimidoor & midavdoor.
Some actions being do in critter_p_proc.
Note: In the non critters scripts function critter_p_proc will not work.
#define self_hp get_critter_stat(self_obj,STAT_current_hp)
variable hp_left;
variable hp2regen;
procedure map_enter_p_proc begin
hp_left:=999;
if self_hp<999 then begin
hp2regen:=999-self_hp;
hp_left:=999-hp2regen;
critter_heal(self_obj, hp2regen);
end
end...
hmm... i not really sure, but try this:
temporary_variable:=50*(50/100);
float_msg(dude_obj, "text: "+temporary_variable, 9)
or this
float_msg(dude_obj, "text: "+(50*50)/100, 9)
Hmm... TRIPLE_ROLL... for what? Why this variant bad?
procedure Node001 begin
variable tmp_var;
variable los;
tmp_var:=random(1, 10);
if var_in(tmp_var, 1, 5) then los:=1;
else if var_in(tmp_var, 6, 8) then los:=2;
else if var_in(tmp_var, 9, 10) then los:=3...
part of code
#define var_in(x, y, z) ((x>=y) and (x<=z))
variable tmp_var;
variable los;
tmp_var:=random(1, 10);
if var_in(tmp_var, 1, 5) then los:=1;
else if var_in(tmp_var, 6, 8) then los:=2;
else if var_in(tmp_var, 9, 10) then los:=3;
>>Error
Are you sure? :)
#define GVAR_QUEST1 699
before preprocessor:
set_global_var(GVAR_QUEST1-1+los,1);
after preprocessor:
set_global_var(699-1+los,1);
Where is error?
procedure Node001 begin
variable los;
los := random(1,3);
Reply(121+los);
set_global_var(GVAR_QUEST1-1+los,1);
NOption(101,Node999,003);
end
procedure talk_p_proc begin
variable node_x;
start_gdialog(NAME,self_obj,4,-1,-1);
gSay_Start;
if (global_var(GVAR_QUEST1) ==...
Dude101, why you announce my Sister of Sulik mod without my sanction? If it was necessary for me, I would make it.
Sister of Sulik mod it's just little part of Alternative Life mod. Demo version.
1.03y - it's Seraph patch/mod translated to russian and with some new bugfixes, integrated...