You are not logged in.

Vote us on google

Top 5-Downloads

Five newest downloads

idk... (Igntu...)May 9th 2012, 3:33pm

T4R IntroMusic... (Simon...)Apr 21st 2012, 1:25pm

T4R ChallengeMu... (Simon...)Apr 21st 2012, 1:20pm

Schatzkarte Ple... (Malun...)Apr 19th 2012, 3:00pm

Schatztruhe Ple... (Malun...)Apr 19th 2012, 2:58pm

4 Categories, 201 Files, 727,536 Downloads

Donate

Donate for the Board. Webspace Contests Upgrades

TMU - very cheap: only € 9,99

Controlpanel

New Member

jeti16(May 12th 2012, 1:31pm)

Ziehzeit(May 10th 2012, 9:24am)

davorek(Apr 28th 2012, 1:51pm)

norko2007(Apr 26th 2012, 9:46am)

bioneer(Apr 13th 2012, 9:32am)

Statistic

  • Members: 602
  • Threads: 819
  • Postings: 7875 (ø 8.98/day)
  • Greetings to our newest member: jeti16

Suchmaschinenoptimierung mit Ranking-Hits

Upload and Give MOD

Upload your Mod and give us the link for upload it on vinummusik

Big Al

Kacklappen

  • "Big Al" started this thread
  • Germany

Posts: 149

Location: Cologne

Thanks: 4

  • Send private message

1

Sunday, August 15th 2010, 10:57am

What is CP live 2.05? 1.2 just with grey box?

That quad version lags like hell on pixelsport :\

I dont know whats the difference exactly.
I asked Lambda to send me the latest update so i got 2 Versions with different descriptions:

Test plugin CP Live v1.2 (13-avg-2010) by Lambda (hello.lambda@yahoo.com)
- some code improvement
Time Attack mode - XAseco 1.10 and higher, tested on PHP 5.3.1 (Linux)
Useful for RPG servers with max 10-15 players.
Put this file into your xaseco/plugins folder, add this line in plugins.xml and restart XAseco:
<plugin>cplive_v1.2.php</plugin>
For positions, text color and more settings open plugin and in configuration section change values
(in the final version will be included xml file; maybe not).
If you notice some kind of problems, just send me aseco.log or logfile.txt file without any passwords and list me versions:
PHP, OS (Windows, Linux), Dedicated Server, XAseco and currently number of players.
Lambda :-)

and
Test plugin Checkpoints Live v2.0.5 (08-avg-2010) by Lambda (hello.lambda@yahoo.com)
- replaced red and green arrows with icons
Time Attack mode - XAseco 1.10 and higher, tested on PHP 5.3.1 (Linux)
Useful for RPG servers with max 10-15 players.
Put this file into your xaseco/plugins folder, add this line in plugins.xml and restart XAseco:
<plugin>plugin.cplive_v2.0.5.php</plugin>
For positions, text color and more settings open plugin and in configuration section change values
(in the final version will be included xml file; maybe not).
With this version you can hide/unhide CP Live Widget with red and green arrows. Just click on it.
If you notice some kind of problems, just send me aseco.log or logfile.txt file without any passwords and list me versions:
PHP, OS (Windows, Linux), Dedicated Server, XAseco and currently number of players.
Lambda :-)


Email comment:
Hi
CP Live v1.2 -> light version
CP Live v2.0.5 -> "lag" version
Any feedback is welcome.
Lambda


Cos "lag" is a bad, bad word in esports, i choose the V1.2 :)
I set it on 20 players, no problems so far with 25 players.

Advertisement

Ad


Tecfan

Tecfan

    Norway

Posts: 177

Location: Sandnes, Norway

Occupation: Student

Thanks: 5

  • Send private message

2

Sunday, August 15th 2010, 12:15pm

wow, finally an update.. the version from your screenshot looks perfect.. i've been using the first test version since forever, since the "new" (not new now) version always made xaseco delay for like 5-6 minutes.

has he uploaded this to tm-forum now?

Big Al

Kacklappen

  • "Big Al" started this thread
  • Germany

Posts: 149

Location: Cologne

Thanks: 4

  • Send private message

Advertisement

Ad


Tecfan

Tecfan

    Norway

Posts: 177

Location: Sandnes, Norway

Occupation: Student

Thanks: 5

  • Send private message

4

Sunday, August 15th 2010, 9:21pm

plugin by Lambda

I hope we can get more Kacklappen players on the forum, I hate to see the community split up ;)

I will do like on Pixel a button on Kacklappen server(s) for Blogspot. If You would copy me the the lines out of fufi_widgets_xaseco.xml we could share the grafic (url), and less work for me.
So if you would give me the whole <ad>...</ad> lines it would be perfect.

Maybe we will find even more ways to bring the RPG servers and users closer together. :)


it's actually a plugin by Lambda, so this is all you need:

PHP Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
    /***********************************************
     * small plugin -> link to rpg blog by Lambda  *
     ***********************************************/

Aseco::registerEvent('onPlayerConnect''banner');
//Aseco::registerEvent('onEndRace', 'no_banner');

function banner($lambda){

    $rpg '<?xml version="1.0" encoding="UTF-8"?>';
    $rpg .= '<manialink id="6755263">';
    $rpg .= '<frame posn="-63.8 45.5">';
    $rpg .= '<quad sizen="3.2 3.2" posn="0 0 0" scale="1" image="http://www.fileden.com/files/2009/4/4/2391276/rpg_blog_gray.png" imagefocus="http://www.fileden.com/files/2009/4/4/2391276/rpg_blog_.png" url="http://trackmaniarpg.blogspot.com/"/>';
    $rpg .= '</frame>';
    $rpg .= '</manialink>';

    $lambda->client->query("SendDisplayManialinkPage"$rpg0false);
    }

function no_banner($lambda){
    $rpg '<?xml version="1.0" encoding="UTF-8"?>';
    $rpg .= '<manialink id="6755263">';
    $rpg .= '</manialink>';
    $lambda->client->query("SendDisplayManialinkPage"$rpg1false);
    }

?>

  • "-|MfG|-Big Al™" started this thread
  • Germany

Posts: 149

Location: Cologne

Thanks: 4

  • Send private message

Advertisement

Ad


Lambda

freelancer

    Slovenia

Posts: 36

  • Send private message

6

Monday, August 16th 2010, 7:34pm

Slightly improved plugin (manialink is sent only to player who join the server).

PHP Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php

    /**
     * plugin.rpgblog_banner.php by Lambda 16-Avg-2010
     * link to Rpg Blog
     * copy and save as (or as you wish): plugin.rpgblog_banner.php
     */

    Aseco::registerEvent ('onPlayerConnect''banner');
    // If you want to hide at the end of the game uncomment this event
    //Aseco::registerEvent ('onEndRace', 'no_banner');

    global $banner_ml_id$banner_pos_x$banner_pos_y;
    
    //*** Start config ***//
    
    $banner_ml_id 6755263;    // Manialink ID
    $banner_pos_x = -63.8;    // Horizontal position
    $banner_pos_y 48;    // Vertical position (45.5 -> under Fufi Menu)
    
    //*** End config ***//    
    
    function banner ($lambda$info) {
    global $banner_ml_id$banner_pos_x$banner_pos_y;
    
        $login $info->login;
    
        $rpg '<?xml version="1.0" encoding="UTF-8"?>';
        $rpg .= '<manialink id="'.$banner_ml_id.'">';
        $rpg .= '<frame posn="'.$banner_pos_x.' '.$banner_pos_y.'">';
        $rpg .= '<quad sizen="3.2 3.2" posn="0 0 0" scale="1" image="http://www.fileden.com/files/2009/4/4/2391276/rpg_blog_gray.png" imagefocus="http://www.fileden.com/files/2009/4/4/2391276/rpg_blog_.png" url="http://trackmaniarpg.blogspot.com/"/>';
        $rpg .= '</frame>';
        $rpg .= '</manialink>';

        $lambda->client->query("SendDisplayManialinkPageToLogin"$login$rpg0false);
    }

    function no_banner ($lambda) {
    global $banner_ml_id;
    
        $rpg '<?xml version="1.0" encoding="UTF-8"?>';
        $rpg .= '<manialink id="'.$banner_ml_id.'"></manialink>';
    
        $lambda->client->query("SendDisplayManialinkPage"$rpg1false);
    }

?>


Lambda

This post has been edited 1 times, last edit by "Lambda" (Aug 16th 2010, 9:57pm)


Tecfan

Tecfan

    Norway

Posts: 177

Location: Sandnes, Norway

Occupation: Student

Thanks: 5

  • Send private message

7

Monday, August 16th 2010, 8:08pm

Nice one Lambda - you reckon Pixelsport should run the "lag free" CP live version? Why is it lag free?

Advertisement

Ad


Lambda

freelancer

    Slovenia

Posts: 36

  • Send private message

8

Monday, August 16th 2010, 9:49pm

has he uploaded this to tm-forum now?

Somehow I do not think that it would publish the plugin in the TM-Forum in the near future because it is currently still in the testing phase ...
I'm working on a different approach, but currently I do not have much free time.

Lambda

freelancer

    Slovenia

Posts: 36

  • Send private message

9

Monday, August 16th 2010, 9:55pm

Why is it lag free?

I'm not sure if I understand correctly. You mean: less or without?
Sorry, my knowledge of the English language is not very good.

Advertisement

Ad


  • "-|MfG|-Big Al™" started this thread
  • Germany

Posts: 149

Location: Cologne

Thanks: 4

  • Send private message

10

Monday, August 16th 2010, 10:30pm

has he uploaded this to tm-forum now?

Somehow I do not think that it would publish the plugin in the TM-Forum in the near future because it is currently still in the testing phase ...
I'm working on a different approach, but currently I do not have much free time.
Oh why not?
The more testers the more feedback?
Shall i erase it from FTP?
Just let me know.
We´re in RPG forum so many expreriments happen here :)

Bookmark and Share