18 lines
314 B
Plaintext
18 lines
314 B
Plaintext
|
#include "_c_inc_message"
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
int nPage = GetDataBaseInt(_PAGE_);
|
||
|
|
||
|
if(nPage < 1) {
|
||
|
FloatingTextStringOnCreature("End of List",oPC);
|
||
|
PlaySound("gui_error");
|
||
|
return;
|
||
|
|
||
|
} else {
|
||
|
|
||
|
--nPage;
|
||
|
SetDataBaseInt(_PAGE_,nPage);
|
||
|
}
|
||
|
}
|