is there a code for peoples ranks to go up by what they do like by:
so many kudos=rank
so many kills=rank
so many deaths=rank
some item=rank
some vehicle=rank
some skill=rank
some job=rank
anyone of these have a code
also on the so many deaths i mean like rank go down of something like that
so do any of these have codes?
Code For Ranks
do you mean ranks like knight/god/op/etc?
there isen't anyhting for that coded yet, but some workarounds are possible.
like, could use the event script to have a player buy an item that makes them a knight/op/whatever.
besides that, theres player levels (like syv/republic have)
but those are also used with level items, not with job/etc yet.
there isen't anyhting for that coded yet, but some workarounds are possible.
like, could use the event script to have a player buy an item that makes them a knight/op/whatever.
besides that, theres player levels (like syv/republic have)
but those are also used with level items, not with job/etc yet.
- morbydvisns
- Posts: 1889
- Joined: Sun Jan 30, 2005 12:51 am
im setting up BongsFunZone like that.. right now players can work to earn a knight status, will have God in soon, and as soon as building trigger events work and some other upcoming scripting features will have advancement promotions to Op and Sys available, using *setauth commands in various events scripts
oh i didnt know that but like is there a code like this
something like that possible ???
Code: Select all
player gets 100kudos(whatever that code is) %player%
*setauth god
*grantcash 2000
- morbydvisns
- Posts: 1889
- Joined: Sun Jan 30, 2005 12:51 am
Code: Select all
Event( "Buildingdestroyed", "21" )
{
*command=knight %player%
*command=Congratulations on your status enhancement. Please relog for changes to show.
*command=say %player% has received a status enhancement and is now a Knight.
*command=effect %player% 2
*command=grantskill %player% Progression Pt2
*command=grantcash %player% 2500
*command=grantkudos %player% 2
*command=resetpos %player%
}
Code: Select all
Event ( "100", "kudos" )
{
*command=god %player%
*command=Congratulations on your status enhancement. Please relog for changes to show.
*command=say %player% has received a status enhancement and is now a God
*command=grantcash %player% 5000
*command=grantskill %player% Master Sailor
*command=grantkudos %player% 10
}