Hello There, Guest! Login or Register


Las Venturas Playground 9.6.0
#1
Heya!

Since the last update the development beasts have been working on some more core features of Las Venturas Playground. Starting off with the renewed colormanager that takes care of every player's default/minigame/gang/pause-color, now smoothly working together with other LVP features. Some minigames might not be updated to work with this new colormanager yet, but will be very soon. Both gangs and players are now able to change their color, and we're working on bringing persistent color changes to our VIPs!

Second, the power statue has been replaced with four brand new statues: Ammo, Armour, Health and Money. Each statue has it's own recognizable map icon, looking accordingly:
Ammo: [Image: Icon_6.gif], Armour: [Image: Icon_30.gif], Health: [Image: Icon_22.gif] and Money: [Image: Icon_23.gif].

Another feature that the team has been rewriting is the pause system. Going /afk now will show a nice timer that tracks your pause duration, while on the background you're spectating a moving train.

Stay tuned for the next upcoming updates as we are going to bring back persistent gangs and introduce some new VIP features!

On behalf of the Las Venturas Playground Management & Development Team,
Cake
Reply
#2
Awesome! Nice work guys  d:)b

Gonna check that out asap !!


Is the new /pm system enabled aswell? =)
Reply
#3
Coolio
Reply
#4
Server needs more cowbells, Sounds aiight
Reply
#5
(07-27-2013, 06:31 PM)cake link Wrote: Another feature that the team has been rewriting is the pause system. Going /afk now will show a nice timer that tracks your pause duration, while on the background you're spectating a moving train.


just to let you know, timer doesn't count straight after a certain time  :w

[Image: 7mmns4md.png]
Reply
#6
here you go dev team
Code:
stock MsToStr(ms)
{
    new str[20];
    new h = (ms /  (1000 * 60 * 60)),
        m = (ms %  (1000 * 60 * 60)) / (1000 * 60),
        s = ((ms % (1000 * 60 * 60)) % (1000 * 60)) / 1000;

    ms = ms - (h * 60 * 60 * 1000) - (m * 60 * 1000) - (s * 1000);

    if(h > 0) format(str, 20, "%02d:%02d:%02d:%03d", h, m, s, ms);
    else if(m > 0) format(str, 20, "%02d:%02d:%03d", m, s, ms);
    else format(str, 20, "%02d:%03d", s, ms);
    return str;
}
Reply
#7
Fuse for LVP dev  ;)
Reply