file Basic Marble Blast Coding Q&A

  • Posts: 227
  • Thank you received: 0
10 Mar 2011 04:50 #211
Nope. You should know this, there are a bunch of new PU's in MBOpal..

Please Log in or Create an account to join the conversation.

  • HiGuy
  • HiGuy's Avatar
  • Offline
  • Lead Developer
  • Lead Developer
  • PQ Developer Emeritus
  • Posts: 1333
  • Thank you received: 604
12 Mar 2011 15:54 #212
Erm, Stal, I coded those PUs. It was a bunch of work, and modified about 6-8 source files.

This signature is real code
Code:
function clientcmd12dothepq() { commandToClient(LocalClientConnection, '34onthedancefloor'); }

Please Log in or Create an account to join the conversation.

  • Posts: 20
  • Thank you received: 0
22 Mar 2011 02:46 #213
Quick question, not sure where to ask it:

Did we ever find out a way to give the player a powerup via console?

'cause I just managed to create a way to do that, and I feel like I read that it wasn't possible to do at the moment. So I wanted to check if nobody knows how to do it, or I'm just insane and never saw it before

Please Log in or Create an account to join the conversation.

  • Posts: 1949
  • Thank you received: 18
22 Mar 2011 13:41 #214
How'd you manage it?

Please Log in or Create an account to join the conversation.

  • IsraeliRD
  • IsraeliRD's Avatar
  • Offline
  • Project Manager
  • Project Manager
  • Dragon Power Supreme
  • Posts: 3502
  • Thank you received: 912
22 Mar 2011 15:31 #215
It should be rather easy afaik from what I was taught by Seiz.

"matan, now i get what you meant a few years back when you said that "the level in mbg is beyond me" after the last rampage i noticed things were insane, and now i truly feel that too" - Dushine, 2015.

Please Log in or Create an account to join the conversation.

  • RDs.The-dts-guy
  • RDs.The-dts-guy's Avatar
  • Offline
  • Developer
  • Developer
  • Blender pls
  • Posts: 719
  • Thank you received: 188
22 Mar 2011 19:00 #216
Sounds like easy cheating but it would be fun to use.

Some guy that does DTS shapes and levels.

AWESOME time HINT : When making PQ level place your custom interiors and textures in platinum/data/interiors_pq/custom
makes life easier for you and everyone else :)

Please Log in or Create an account to join the conversation.

  • Jeff
  • Jeff's Avatar
  • Offline
  • Elite Marbler
  • Elite Marbler
  • PlatinumQuest Programmer
  • Posts: 1680
  • Thank you received: 205
22 Mar 2011 22:52 #217
I am not sure Picklecow. If you dont mind, would you post the code in the DK?

Edit: Where is the variable $Game::ScoreTime defined at in MB?

I am a programmer. Most here know me for being one of the major contributors to Marble Blast Platinum and PlatinumQuest.

Please Log in or Create an account to join the conversation.

  • Posts: 20
  • Thank you received: 0
24 Mar 2011 01:51 #218
May post the codes in a little bit, but first I'm working on a better random powerup script- something kind of like a item wheel... not really sure how to explain it. Imagine the Mario Kart item system.


Mar 22, 2011, 3:52pm, jeff wrote:I am not sure Picklecow. If you dont mind, would you post the code in the DK?

Edit: Where is the variable $Game::ScoreTime defined at in MB?

Not sure where it's defined, can't find it in the game files (may be defined in a compiled script).

It gets a value in the endGame() in Game.cs, in case you didn't already know that/helps you out at all

Please Log in or Create an account to join the conversation.

  • Jeff
  • Jeff's Avatar
  • Offline
  • Elite Marbler
  • Elite Marbler
  • PlatinumQuest Programmer
  • Posts: 1680
  • Thank you received: 205
24 Mar 2011 02:01 #219
thanks anyways picklecow.

I am a programmer. Most here know me for being one of the major contributors to Marble Blast Platinum and PlatinumQuest.

Please Log in or Create an account to join the conversation.

  • dobrakmato
  • dobrakmato's Avatar
  • Offline
  • Experienced Marbler
  • Experienced Marbler
  • Posts: 134
  • Thank you received: 0
24 Mar 2011 11:27 #220
How to destroy shape(powerup shape) after colision with marble? Is for there any function?

Please Log in or Create an account to join the conversation.

  • HiGuy
  • HiGuy's Avatar
  • Offline
  • Lead Developer
  • Lead Developer
  • PQ Developer Emeritus
  • Posts: 1333
  • Thank you received: 604
24 Mar 2011 22:44 #221
Like to hide it? Use %obj.hide(true); to hide an object, and run that in Marble::onCollision() in marble.cs.

This signature is real code
Code:
function clientcmd12dothepq() { commandToClient(LocalClientConnection, '34onthedancefloor'); }

Please Log in or Create an account to join the conversation.

  • dobrakmato
  • dobrakmato's Avatar
  • Offline
  • Experienced Marbler
  • Experienced Marbler
  • Posts: 134
  • Thank you received: 0
24 Mar 2011 23:16 #222
Thanks, working.

Please Log in or Create an account to join the conversation.

  • HiGuy
  • HiGuy's Avatar
  • Offline
  • Lead Developer
  • Lead Developer
  • PQ Developer Emeritus
  • Posts: 1333
  • Thank you received: 604
26 Mar 2011 15:19 #223
Hey, does anyone know how to get the exact camera rotation? By camera rotation I mean direction the camera (viewpoint) is facing. I tried using LocalClientConnection.camera, but that only relates to the Observer object, and gives me no values. I tried putting this in PlayGui.updateControls():
Code:$zCameraRotation += -$mvYawLeftSpeed + $mvYawRightSpeed + $mvYaw;

But that gives incorrect results.
So does anyone know how to find this? Thanks,

HiGuy

This signature is real code
Code:
function clientcmd12dothepq() { commandToClient(LocalClientConnection, '34onthedancefloor'); }

Please Log in or Create an account to join the conversation.

  • Jeff
  • Jeff's Avatar
  • Offline
  • Elite Marbler
  • Elite Marbler
  • PlatinumQuest Programmer
  • Posts: 1680
  • Thank you received: 205
27 Mar 2011 02:41 #224
you may be able to find something in default.bind.cs

also, if anybody has startmissiongui.gui it would be great if you could send it too me.

I am a programmer. Most here know me for being one of the major contributors to Marble Blast Platinum and PlatinumQuest.

Please Log in or Create an account to join the conversation.

  • HiGuy
  • HiGuy's Avatar
  • Offline
  • Lead Developer
  • Lead Developer
  • PQ Developer Emeritus
  • Posts: 1333
  • Thank you received: 604
27 Mar 2011 17:55 #225
SMG.gui? PM Matan.

This signature is real code
Code:
function clientcmd12dothepq() { commandToClient(LocalClientConnection, '34onthedancefloor'); }

Please Log in or Create an account to join the conversation.

  • Jeff
  • Jeff's Avatar
  • Offline
  • Elite Marbler
  • Elite Marbler
  • PlatinumQuest Programmer
  • Posts: 1680
  • Thank you received: 205
27 Mar 2011 18:23 #226
i actually have it already

i need joinservergui.gui

matan, plz

I am a programmer. Most here know me for being one of the major contributors to Marble Blast Platinum and PlatinumQuest.

Please Log in or Create an account to join the conversation.

  • dobrakmato
  • dobrakmato's Avatar
  • Offline
  • Experienced Marbler
  • Experienced Marbler
  • Posts: 134
  • Thank you received: 0
11 Apr 2011 20:14 #227
In which file(or function) is starting local game (i mean creating defaultmarble shape)?

Please Log in or Create an account to join the conversation.

  • Jeff
  • Jeff's Avatar
  • Offline
  • Elite Marbler
  • Elite Marbler
  • PlatinumQuest Programmer
  • Posts: 1680
  • Thank you received: 205
11 Apr 2011 22:12 #228
game.cs

marble/server/scripts

I am a programmer. Most here know me for being one of the major contributors to Marble Blast Platinum and PlatinumQuest.

Please Log in or Create an account to join the conversation.

  • dobrakmato
  • dobrakmato's Avatar
  • Offline
  • Experienced Marbler
  • Experienced Marbler
  • Posts: 134
  • Thank you received: 0
12 Apr 2011 19:23 #229
Thanks i found it.. I have another question abou Gui element. It will work if i make this code Code://--- OBJECT WRITE BEGIN ---
new GuiChunkedBitmapCtrl(MarbleChooseGui) {
profile = GuiContentProfile;
horizSizing = width;
vertSizing = height;
position = 0 0;
extent = 640 480;
minExtent = 8 8;
visible = 1;
helpTag = 0;
bitmap = ./background.jpg;
useVariable = 0;
tile = 0;

new GuiControl() {
profile = GuiWindowProfile;
horizSizing = center;
vertSizing = center;
position = 65 126;
extent = 510 228;
minExtent = 8 8;
visible = 1;
helpTag = 0;

new GuiObjectView(ballobject) {
profile = GuiDefaultProfile;
horizSizing = right;
vertSizing = bottom;
position = 13 19;
extent = 140 132;
minExtent = 8 8;
visible = 1;
helpTag = 0;
cameraZRot = 0;
forceFOV = 0;
model = ~/data/shapes/balls/Marble_1.dts;
skin = base;
cameraRotX = 0.25;
cameraZRotSpeed = 0.001;
orbitDistance = 0.5;
autoSize = 0;
};
};
};

//--- OBJECT WRITE END ---

function ballobject::onClick()
{
//anything cool...
}
?

Or if not how to make code for click on object?

Please Log in or Create an account to join the conversation.

  • Jeff
  • Jeff's Avatar
  • Offline
  • Elite Marbler
  • Elite Marbler
  • PlatinumQuest Programmer
  • Posts: 1680
  • Thank you received: 205
12 Apr 2011 21:23 #230
i am not sure for object. (higuy, seiz, matan, anybody) you can do that for a bitmap image though. It may be onUse though, I am not sure.

I am a programmer. Most here know me for being one of the major contributors to Marble Blast Platinum and PlatinumQuest.

Please Log in or Create an account to join the conversation.

  • HiGuy
  • HiGuy's Avatar
  • Offline
  • Lead Developer
  • Lead Developer
  • PQ Developer Emeritus
  • Posts: 1333
  • Thank you received: 604
13 Apr 2011 02:31 #231
Have a GuiButtonBaseCtrl over the GuiObjectView, and use that for calling methods.

This signature is real code
Code:
function clientcmd12dothepq() { commandToClient(LocalClientConnection, '34onthedancefloor'); }

Please Log in or Create an account to join the conversation.

  • RDs.The-dts-guy
  • RDs.The-dts-guy's Avatar
  • Offline
  • Developer
  • Developer
  • Blender pls
  • Posts: 719
  • Thank you received: 188
20 Apr 2011 06:17 #232
I have been working on animated startpads but i have one huge problem. I enter level. Animation starts then stops and after i went OBB it isnt reseting and moving again. Target is to tell pad to reset animation after going OBB. This is Pads.cs that i use now for animation localhostr.com/download/B59Qitj/pads.cs
But i dont know how to code it so it resets after going OBB or restarting level.
In blender dts exporter i exported animation as normal that runs one time.
I also need to make pads.cs so that animation starts when you enter EndPad.

Some guy that does DTS shapes and levels.

AWESOME time HINT : When making PQ level place your custom interiors and textures in platinum/data/interiors_pq/custom
makes life easier for you and everyone else :)

Please Log in or Create an account to join the conversation.

  • dobrakmato
  • dobrakmato's Avatar
  • Offline
  • Experienced Marbler
  • Experienced Marbler
  • Posts: 134
  • Thank you received: 0
20 Apr 2011 11:17 #233
Maybe this works :

//

function GameConnection::onOutOfBounds(%this)
{
if ($Game::State $= End)
return;

// Reset the player back to the last checkpoint
PlayGui.setMessage(outOfBounds,2000);
%this.play2d(OutOfBoundsVoiceSfx);
%this.player.setOOB(true);
%this.player.startpad.playThread(0,pad);
if(!isEventPending(%this.respawnSchedule))
%this.respawnSchedule = %this.schedule(2500, respawnPlayer);
}

this is from game.cs.

Please Log in or Create an account to join the conversation.

  • RDs.The-dts-guy
  • RDs.The-dts-guy's Avatar
  • Offline
  • Developer
  • Developer
  • Blender pls
  • Posts: 719
  • Thank you received: 188
20 Apr 2011 18:57 #234
dont know if i instaled it incorectly but it didnt worked. Can you send me game.cs in MBR proboards please?

Some guy that does DTS shapes and levels.

AWESOME time HINT : When making PQ level place your custom interiors and textures in platinum/data/interiors_pq/custom
makes life easier for you and everyone else :)

Please Log in or Create an account to join the conversation.

  • dobrakmato
  • dobrakmato's Avatar
  • Offline
  • Experienced Marbler
  • Experienced Marbler
  • Posts: 134
  • Thank you received: 0
20 Apr 2011 20:00 #235
RDs.empire: I posted game.cs on MBR forums. Go for it.

Please Log in or Create an account to join the conversation.

  • NaCl586
  • NaCl586's Avatar
  • Offline
  • Professional Marbler
  • Professional Marbler
  • An Ordinary Marble Blaster
  • Posts: 442
  • Thank you received: 70
30 Apr 2011 03:10 #236
BUMP! (i don't think this is bump)
I have few question
1.How to create new powerup
2.Where the powerup script go

thanks

~NaCl586 10%Warn

I'm just an ordinary marble blaster who like to create new and unusual things.

Creator of the Marble Blast GLC series
Check out and download my custom levels here .
Check out my original musics in this thread and in my soundcloud here .

Please Log in or Create an account to join the conversation.

  • Jeff
  • Jeff's Avatar
  • Offline
  • Elite Marbler
  • Elite Marbler
  • PlatinumQuest Programmer
  • Posts: 1680
  • Thank you received: 205
30 Apr 2011 04:22 #237
you need to look in powerups.cs. However, the game is hard coded so that u only can have 5 powerupids, which is the 5 powerups besides gravity modifier and time travel since they are onCollision specific. You would have to create custom codes like opal did (which I am not suppling to people nor does even 90% of the staff have the codes (its that secrete)). Then, you have to first decide what you want it to do, on collision effect is fine since u don't need a powerupid though, such as mbp's easter egg, you could have it as a powerupid = 0 or no such dynamic field of a powerupId. if you want to do an on collision effect, its this syntax:

function theitemname::onCollision(%this,%obj,%col)
{
then write your commands;
}

I am a programmer. Most here know me for being one of the major contributors to Marble Blast Platinum and PlatinumQuest.

Please Log in or Create an account to join the conversation.

  • NaCl586
  • NaCl586's Avatar
  • Offline
  • Professional Marbler
  • Professional Marbler
  • An Ordinary Marble Blaster
  • Posts: 442
  • Thank you received: 70
30 Apr 2011 04:37 #238
sorry , i mean inventory powerup like marble recoil and anti recoil

I'm just an ordinary marble blaster who like to create new and unusual things.

Creator of the Marble Blast GLC series
Check out and download my custom levels here .
Check out my original musics in this thread and in my soundcloud here .

Please Log in or Create an account to join the conversation.

  • Jeff
  • Jeff's Avatar
  • Offline
  • Elite Marbler
  • Elite Marbler
  • PlatinumQuest Programmer
  • Posts: 1680
  • Thank you received: 205
30 Apr 2011 04:56 #239
then you have to make custom scripts, i cant help you much farther, sorry.

I am a programmer. Most here know me for being one of the major contributors to Marble Blast Platinum and PlatinumQuest.

Please Log in or Create an account to join the conversation.

  • whirligig
  • whirligig's Avatar
  • Offline
  • Professional Marbler
  • Professional Marbler
  • Posts: 444
  • Thank you received: 261
25 Jun 2011 18:40 #240
Custom powerups are in this topic: marbleblast.com/index.cgi?board=mbdkcode...display&thread=11902

Here's a question: How do I modify the force magnitude of a mine? (i.e. Mine vs. Nuke) Whatever I try to do, it seems that the force is always the same.

Please Log in or Create an account to join the conversation.

Moderators: Doomblah
Time to create page: 1.152 seconds
We use cookies

We use cookies on our website. Some of them are essential for the operation of the site, while others help us to improve this site and the user experience (tracking cookies). You can decide for yourself whether you want to allow cookies or not. Please note that if you reject them, you may not be able to use all the functionalities of the site.