NPC Pet Rental 1.9 Req'd

Desolation Mir2 (Med Rate Server)

MiloFoxburr

LOMCN VIP
VIP
Mar 23, 2003
7,276
207
350
Dublin, Ireland
Every rental script supports ledu which is a client

Unless of course you mean Plumewind which is the server...
In which case there should be a few scripts lieing around Try the foundation files
 
Upvote 0

sirchrist

Dedicated Member
Dedicated Member
Feb 23, 2005
218
1
45
Poole Dorset
MiloFoxburr said:
Every rental script supports ledu which is a client

Unless of course you mean Plumewind which is the server...
In which case there should be a few scripts lieing around Try the foundation files
The only one i found using Search was for 1.4...
 
Upvote 0

Ripman

LOMCN Developer
Developer
Jul 22, 2003
1,129
20
265
Romania, Timisoara
here i use for my server:

[@main]
#IF
CHECKSLAVECOUNT > 0
#SAY
Sorry I can only give one pet to each person.\ \
#ELSESAY
Hello <$USERNAME>. How can I help?\
Ah that's right you want pets?! I only can summon a\
random pet for only 20.000 gold.\ \
<Summon a random pet for me/@Next>\
<Hire a Slave/@slave> for 300.000 gold\
<Close/@exit>\


[@next]
#IF
CHECKSLAVECOUNT > 0
#SAY
Sorry you can only have one mob.\ \
#ELSEACT
goto @gorandom

[@gorandom]
#IF
checkgold 20000
#ACT
goto @start5
#ELSESAY
You dont have enought money to rent this pet.

[@start5]
#IF
random 20
#ACT
take gold 20000
RECALLMOB BoneBlademan
break
close

#IF
random 20
#ACT
take gold 20000
RECALLMOB IceMinotaur
break
close

#IF
random 20
#ACT
take gold 20000
RECALLMOB OmaWarrior
break
close

#IF
random 20
#ACT
take gold 20000
RECALLMOB RightGuard
break
close

#IF
random 20
#ACT
take gold 20000
RECALLMOB LeftGuard
break
close

#IF
random 20
#ACT
take gold 20000
RECALLMOB SonicSeal
break
close

#IF
random 20
#ACT
take gold 20000
RECALLMOB LureSpider
break
close

#IF
random 40
#ACT
take gold 20000
RECALLMOB OmaMace
break
close

#ELSEACT
goto @start5

[@slave]
#IF
CHECKSLAVECOUNT > 0
#ACT
goto @errorslave
#ELSEACT
goto @giveslave

[@giveslave]
#SAY
In order to use the SLAVE you must rest him (CTRL+A) then\
face him and type: @giveitems\ \

<Exit/@exit>

#ACT
take gold 300000
RECALLMOB HumanSlave
break

[@errorslave]
#SAY
Sorry you can only have one slave.
 
Upvote 0