Server Goin Live

solvent

LOMCN Veteran
Veteran
Jul 24, 2006
457
0
43
On The Sun
Hi all, im geting a new pc 2mos for hosting my server only and atm plans are for it to go live xmas day, not that i mind it going live sooner but, i need a few more things 2 make server a little better as i dont want it to be boring when people start im having problems finding ....

what do i put in Qfunction to show when people level up..?

also in my Npc wil, i have lots of npcs in there now iv tryed many ways to try get the right image ingame for the npc i see in the wil file and cannot get them to look right in game, how do i do this?

how do i put sounds on mobs?

thats about all i can think of atm.. forget every thing when it comes round to asking lol >.<

now a few things that i have been looking for that i would like are...
a pet npc that starts when u click it you tell it what class you are and it checks ur class etc then u go to another page that gives you a list of pets you can buy

--

a rebirth npc that gives you Rebirth kit and changes your title to "Reborn"
and changes ur name couler to the flashy one if u no wat i mean.
then what would i put on a npc to check if ur reborn/rebirth to tele u to some where else?

--

another npc that checks if ur in Sabuk Guild for you to use it?

--
how do i adjust orb rate?



Manys thanks for help and replys..

server will be going live from now till xmas il post on lomcn when it does ofc =]

pls dont ask for server name or ip yet please =]

also whats the best site to make a download link?


THANKS FOR ALL HELP !!!!!! =]
 

Spoon666

LOMCN Veteran
Veteran
Feb 12, 2005
292
0
43
South West Wales
what do i put in Qfunction to show when people level up..?
[@LevelUp]

also in my Npc wil, i have lots of npcs in there now iv tryed many ways to try get the right image ingame for the npc i see in the wil file and cannot get them to look right in game, how do i do this?
Works for me

how do i put sounds on mobs?
No Idea on 2.3

a pet npc that starts when u click it you tell it what class you are and it checks ur class etc then u go to another page that gives you a list of pets you can buy

[@main]
#IF
CHECKJOB WARR
#ACT
goto @warriorpet
break
#IF
CHECKJOB WIZARD
#ACT
goto @wizardpet
break
#IF
CHECKJOB TAOS
#ACT
goto @taoistpet
break

[@warriorpet]
#SAY
Put script here

[@wizardpet]
#SAY
Put script here

[@taoistpet]
#SAY
Put script here

--

a rebirth npc that gives you Rebirth kit and changes your title to "Reborn"
and changes ur name couler to the flashy one if u no wat i mean.
then what would i put on a npc to check if ur reborn/rebirth to tele u to some where else?

CHECKRENEWLEVEL 1 checks if your reborn 1 time

In q-function if lvl 90 is RB
[@LevelUp]
#IF
CHECKLEVELEX = 90
#ACT
#CALL [..\QuestDiary\Rebirth\Rebirth.txt] @isnewrebirth

Then create the folder Rebirth in QuestDiary with a txt file called Rebirth.txt then do script like:

[@isnewrebirth]
{
#IF
CHECKJOB WARR
#ACT
goto @warriorrebirth
break
#IF
CHECKJOB WIZARD
#ACT
goto @wizardrebirth
break
#IF
CHECKJOB TAOS
#ACT
goto @taoistrebirth
break

[@warriorrebirth]
#SAY
RENEWLEVEL 1 40 100
SENDMSG 0 "<$USERNAME> has been Reborn"
SETRANKLEVELNAME %s/RebornWarrior
ADDNAMELIST ..\QuestDiary\Rebirth\Namelists\NewRebirth.txt
break

[@wizardrebirth]
#SAY
RENEWLEVEL 1 40 100
SENDMSG 0 "<$USERNAME> has been Reborn"
SETRANKLEVELNAME %s/RebornWizard
ADDNAMELIST ..\QuestDiary\Rebirth\Namelists\NewRebirth.txt
break

[@taoistrebirth]
#SAY
RENEWLEVEL 1 40 100
SENDMSG 0 "<$USERNAME> has been Reborn"
SETRANKLEVELNAME %s/RebornTaoist
ADDNAMELIST ..\QuestDiary\Rebirth\Namelists\NewRebirth.txt
break
}

Then Qmanage:

#IF
CHECKNAMELIST ..\QuestDiary\Rebirth\Namelists\NewRebirth.txt
#ACT
#CALL [..\QuestDiary\Rebirth\Rebirthfirstlogin.txt] @rbfirstlogin

#IF
CHECKRENEWLEVEL 1
#ACT
#CALL [..\QuestDiary\Rebirth\Ranks\Ranks.txt] @rbranks

create the file in QuestDiary\Rebirth\Rebirthfirstlogin.txt

[@rbfirstlogin]
{
#IF
CHECKJOB WARR
#ACT
goto @warriorrbkit
break
#IF
CHECKJOB WIZARD
#ACT
goto @wizardrbkit
break
#IF
CHECKJOB TAOS
#ACT
goto @taoistrbkit
break

[@warriorrbkit]
#SAY
Click to get the kit\ \
<Get Kit/@getwarrkit>

[@wizardrbkit]
#SAY
Click to get the kit \ \
<Get Kit/@getwizzkit>

[@taoistrbkit]
#SAY
Click to get the kit \ \
<Get Kit/@gettaoskit>

[@getwarrkit]
#ACT
GIVE items
DELNAMELIST ..\QuestDiary\Rebirth\Namelists\NewRebirth.txt
[@getwizzkit]
#ACT
GIVE items
DELNAMELIST ..\QuestDiary\Rebirth\Namelists\NewRebirth.txt
[@gettaoskit]
#ACT
GIVE items
DELNAMELIST ..\QuestDiary\Rebirth\Namelists\NewRebirth.txt
}

In Ranks.txt
[@rbranks]
use same CHECKJOB script and use SETRANKLEVELNAME %\Reborn etc



--

another npc that checks if ur in Sabuk Guild for you to use it?

#IF
ISCASTLEGUILD


--
how do i adjust orb rate?
No idea never tried i made mine using StdModeFunc
 
Last edited:
Upvote 0

solvent

LOMCN Veteran
Veteran
Jul 24, 2006
457
0
43
On The Sun
thanks for replys


Spoon -
what do i put in Qfunction to show when people level up..?
[@LevelUp]

surly i dont just put levelup and a msg? gota be some command for it 2 shout over whole of mir?

also in my Npc wil, i have lots of npcs in there now iv tryed many ways to try get the right image ingame for the npc i see in the wil file and cannot get them to look right in game, how do i do this?
Works for me

works or me...?

if a npc starts at 00650 what number to do i put in image fld ?

TY for pets / rebirth npc ^_^

Samhag

orb rate - Fld_ACMAX in Tbl_STDITEMS

so in the ACMAX feild how does it work? higher the number better the chance of working? and what sort of numbers we looking at? tens? hunderds? thousands?


thanks for replys
 
Upvote 0

samhag

Dedicated Member
Dedicated Member
Jul 31, 2008
213
0
42
what do i put in Qfunction to show when people level up..?
[@LevelUp]

[@levelup]
#IF
#ACT
SendMsg 0 "<%s> has just levelled. Congratulations" (sommat like that i think)


orb rate - Fld_ACMAX in Tbl_STDITEMS

so in the ACMAX feild how does it work? higher the number better the chance of working? and what sort of numbers we looking at? tens? hunderds? thousands?

I think its the higher the number the better the chance, "normal" is set at 8 i think. Best thing is to change it and try it.
 
Upvote 0

Jambo

Mir 2 Moderator
Staff member
Moderator
Dec 9, 2006
1,660
411
170
West Midlands
is there any way of insted of rebirth ontop of your name for a gamemaster it says gamemaster insted . so theres a kinda GmRebirth Script any body now?
 
Upvote 0

solvent

LOMCN Veteran
Veteran
Jul 24, 2006
457
0
43
On The Sun
yeh jenix u mug want me 2 forum pm this to every 1 on lomcn? lols -.-

how do i make a npc give u a options on titles to give some 1?
at a cost ?
 
Upvote 0

Spoon666

LOMCN Veteran
Veteran
Feb 12, 2005
292
0
43
South West Wales
[@Main]
#SAY
Hi, i can give you a title. \
<Noob/@noob> - <ImUbeR/@imuber> \
<Remove Title/@removetitle>

[noob]
#ACT
ADDNAMELIST ..\QuestDiary\Ranks\Noob.txt
SETRANKLEVELRAME %s\Noob

[@uber]
#ACT
ADDNAMELIST ..\QuestDiary\Ranks\ImUbeR.txt
SETRANKLEVELRAME %s\ImUbeR

[@removetitle]
#ACT
DELNAMELIST ..\QuestDiary\Ranks\ImUbeR.txt
DELNAMELIST ..\QuestDiary\Ranks\Noob.txt


In Qmanage to keep the titles at log in:

#IF
CHECKNAMELIST ..\QuestDiary\Ranks\Noob.txt
#ACT
SETRANKLEVELRAME %s\Noob

#IF
CHECKNAMELIST ..\QuestDiary\Ranks\ImUbeR.txt
SETRANKLEVELRAME %s\ImUbeR


You can put the "cost" part in yourself lol
 
Upvote 0

Zen2

LOMCN Veteran
Veteran
Jul 26, 2007
1,818
18
125
lol eek this thread should be called *Someone Build Me A Server* But nice replys from people ^ ^ may help a few people out aswell as this noob :)

P.S The search Function works perfectly well for every question you asked.
 
Upvote 0

Spoon666

LOMCN Veteran
Veteran
Feb 12, 2005
292
0
43
South West Wales
lol eek this thread should be called *Someone Build Me A Server* But nice replys from people ^ ^ may help a few people out aswell as this noob :)

P.S The search Function works perfectly well for every question you asked.

lol these questions have all been answered on here more than once only reason i'm bothering is through boredom
 
Upvote 0

solvent

LOMCN Veteran
Veteran
Jul 24, 2006
457
0
43
On The Sun
hows this a "build me a server thread" ? iv asked questions that i HAVE tryed searching like i always do .. just most of the threads i find that are even simaler or were posted in 2005 thats how far backed i searched the other day.. for starts and the topics i do find are complete **** tbh and make no sense.

also transferd files at half 7 this morning from my old pc to new 1
and the new 1 is pretty much like u said in the other post i made :P
but with more stuff and better =D

i sorta 4got how 2 set up sql again and had a bit of a problem i found a post by koni witch i used and was crap aswell in the end i used a reply from Bon.. and note u replyed in that saying y not use koni's thread?
im like wtf its crap XD

ty Bon

and my server is built ty =]

this gone of topic 2 much now should b locked or just dont reply
 
Upvote 0