Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   Unholy Nation News (https://forums.graalonline.com/forums/forumdisplay.php?f=224)
-   -   Unholy Nation Updates (https://forums.graalonline.com/forums/showthread.php?t=6628)

LiquidIce00 07-06-2001 04:17 AM

Unholy Nation Updates
 
just so people who enjoy Unholy Nation or want to know whats new here it is .. I'll list everything I can remember:
-day/night is working
-bigmap and minimap working (can be downloaded from our onlinestartlocal)
-new npcs
--Chat scroller NPC (I was bored... made this in 30 minutes)
--date and time is displayed under your arrows, bombs etc..
(like on G2k1, also there is a sun when its day, moon its
night)
--fireworks npc on July 4th (deleted)
--hammer
--pet system (BASIC!!! gani changer. Meaning it lets you change
between pull,push the legal ganis)
--Renzoku Bird now are customizable
--Bank system is now graphical and most bugs have been fixed.
--Taylor skill added
--System npc now has more features (even tho the player
doesnt see them . good for staff)
-Tumantra tiles have been changed.
-Tumantra horse track now functional.(hope to make it better)
-More playerhouses are up
-Most of tile errors r fixed
-Most of the level connecting errors have been fixed (you know the ones when you have the map and things just dont look right)

Future updates..
-Put more cities up
-More QUESTS!!!!
-More NPC's
-More playerhouses (this is for sure)
-Fix more problems
-Have more things to do with time. For example things that occur
at certain times. Like a friend gave me this idea of having
geyser and have it spray water at certain times ;)
-Might enhance day/night to having instead of just day/night
to have dusk, evening and so on..

Thats it for now .. enjoy.

SSmutz 07-06-2001 04:19 AM

What's the "chat scroller npc" do?

LiquidIce00 07-06-2001 04:22 AM

Quote:

Originally posted by SSmutz
What's the "chat scroller npc" do?
uhmm you probbly have seen a 'prog' that does this
like for example if you say Hello and you turn it on
it would do something like this
Hello H
ello He
llo Hel
and so on .. this isnt in a PM or anything its like in the actual Graal .. the chat text of the player #c ;)
nice use of #e . I might give the code out if ppl no copy.

grim_squeaker_x 07-06-2001 04:28 AM

You mean this code?
NPC Code:
if (weaponfired) this.active=1-this.active;
if ((created||timeout)&&isweapon) {
if (this.active==1&&strlen(#c)>0) setplayerprop #c,#e(strlen(#c),1,#c)#e(1,strlen(#c)-1,#c);
timeout=0.05;
}


With perhaps a slower timeout... And I'm not sure if this works like it should but you get the basic idea.

SSmutz 07-06-2001 04:28 AM

Quote:

Originally posted by LiquidIce00


uhmm you probbly have seen a 'prog' that does this
like for example if you say Hello and you turn it on
it would do something like this
Hello H
ello He
llo Hel
and so on .. this isnt in a PM or anything its like in the actual Graal .. the chat text of the player #c ;)
nice use of #e . I might give the code out if ppl no copy.

That would annoy me, cuz the text would move while I'm trying to read it.

LiquidIce00 07-06-2001 04:43 AM

Quote:

Originally posted by SSmutz

That would annoy me, cuz the text would move while I'm trying to read it.

haha its not hard to read it ;)

Where you been anyways?

Slaktmaster 07-06-2001 05:12 AM

Can people just activate it and go to school for whatever without being disconnected with it? Like an idle program in GScript?

LiquidIce00 07-06-2001 05:41 AM

Quote:

Originally posted by Slaktmaster
Can people just activate it and go to school for whatever without being disconnected with it? Like an idle program in GScript?
no because Graal also checks your movements.

SSmutz 07-06-2001 05:47 AM

Quote:

Originally posted by LiquidIce00


haha its not hard to read it ;)

Where you been anyways?

About a week after I quit FAQ, my computer got fried and I'm getting it back tomorrow, completely fixed.

LiquidIce00 07-06-2001 05:55 AM

Quote:

Originally posted by SSmutz

About a week after I quit FAQ, my computer got fried and I'm getting it back tomorrow, completely fixed.

yey come visit =)

oh yeah and I forgot the sleep bar but I took it off.
and im giving away the code if any1 wants.
you need sleep or the bar goes down. if the bar goes empty you start to get hurt.
it goes up when your in bed.

// NPC made by LiquidIce
//sleepy system
//Do Not Use w/o Author Permission!!!!
// made for Unholy Nation

if (playerenters&&!isweapon&&!hasweapon(-sleepsystem)) {
hide;
toweapons -sleepsystem;
setstring sleepcounter,70;
timeout=.05;
}

if (playerenters&&!isweapon&&hasweapon(sleepsystem)) { hide; }

if (playerenters&&isweapon) {
if (timeout=0) { timeout=.05; }
}

if (timeout) {
checksleep();
checkhurt();
Draw();
timeout=.05;
}

function checksleep() {
this.sleepneed=strtofloat(#s(sleepcounter));
if (strequals(#m,sleep)&&this.sleepneed<70) {
this.sleepneed+=.05;
}

if (this.sleepneed>1&&!strequals(#m,sleep)&&!strequal s(#m,dead)) { this.sleepneed-=.001; }

//checks
// if (strequals(#m,dead)||this.sleepneed>70) { this.sleepneed=70; }
if (this.sleepneed<1) { this.sleepneed=1; }
//set string
setstring sleepcounter,#v(this.sleepneed);
}

function Draw() {
//design
showimg 251,unsleepbar.gif,17,125;
changeimgpart 251,,,124,24;
changeimgvis 251,4;
//bar
showimg 250,unsleepbar.gif,66,127;
changeimgpart 250,,24,strtofloat(#s(sleepcounter)),19;
changeimgvis 250,4;
}

function checkhurt() {
this.hurtplayer+=1;
if (this.hurtplayer=100) { this.hurtplayer=0; }
if (!strequals(#m,sleep)&&!strequals(#m,dead)&&strtof loat(#s(sleepcounter))=1&&this.hurtplayer=99) {
hurt 1;
}
}

if (playerdies) {
this.checklife=strtofloat(#s(sleepcounter));
if (this.checklife<25) { this.checklife=25; }
setstring sleepcounter,#v(this.checklife);
}

LiquidIce00 07-06-2001 06:56 AM

1 Attachment(s)
and the bar img attachment

SkooL 07-06-2001 07:40 AM

Re: Unholy Nation Updates
 
Quote:

Originally posted by LiquidIce00
--Chat scroller NPC
I'll stick with Anuerism :p

SkooL 07-06-2001 08:59 AM

Quote:

Originally posted by LiquidIce00
no because Graal also checks your movements.
If that were true, how would the AFK Bot prove effective?

LiquidIce00 07-06-2001 09:20 AM

Quote:

Originally posted by SkooL

If that were true, how would the AFK Bot prove effective?

Graal disconnects you still =\

SkooL 07-06-2001 09:45 AM

Quote:

Originally posted by LiquidIce00
Graal disconnects you still =\
o.O?


All times are GMT +2. The time now is 12:49 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.