Jump to content



Photo
- - - - -

Pac-Man


  • Please log in to reply
2 replies to this topic

#1 spisi69

spisi69

    Enthusiast

  • Members
  • PipPipPip
  • 290 posts
  • Location:Long Island

  • Flag: United States of America

  • Favorite Pinball: Bad Cats

Posted 24 April 2024 - 01:22 PM

I'm looking to change the color of the red dot that tries to kill you while you're in the maze portion of the game. I'd like to make the red a little darker.

'-------------------------------------
' Map lights into array
'-------------------------------------
Dim Matrix(128)

' Matrix Yellow
Set Matrix(1)=L1
Set Matrix(2)=L2
Set Matrix(3)=L3
Set Matrix(4)=L4
Set Matrix(5)=L5
Set Matrix(6)=L6
Set Matrix(17)=L17
Set Matrix(18)=L18
Set Matrix(19)=L19
Set Matrix(20)=L20
Set Matrix(21)=L21
Set Matrix(22)=L22
Set Matrix(33)=L33
Set Matrix(34)=L34
Set Matrix(35)=L35
Set Matrix(36)=L36
Set Matrix(37)=L37
Set Matrix(38)=L38
Set Matrix(49)=L49
Set Matrix(50)=L50
Set Matrix(51)=L51
Set Matrix(52)=L52
Set Matrix(53)=L53
Set Matrix(54)=L54
Set Matrix(55)=L55

' Matrix Red
Set Matrix(65)=L65
Set Matrix(66)=L66
Set Matrix(67)=L67
Set Matrix(68)=L68
Set Matrix(69)=L69
Set Matrix(70)=L70
Set Matrix(81)=L81
Set Matrix(82)=L82
Set Matrix(83)=L83
Set Matrix(84)=L84
Set Matrix(85)=L85
Set Matrix(86)=L86
Set Matrix(97)=L97
Set Matrix(98)=L98
Set Matrix(99)=L99
Set Matrix(100)=L100
Set Matrix(101)=L101
Set Matrix(102)=L102
Set Matrix(113)=L113
Set Matrix(114)=L114
Set Matrix(115)=L115
Set Matrix(116)=L116
Set Matrix(117)=L117
Set Matrix(118)=L118
Set Matrix(119)=L119

' Matrix orange
Set Matrix(73)=L73
Set Matrix(74)=L74
Set Matrix(75)=L75
Set Matrix(76)=L76
Set Matrix(77)=L77
Set Matrix(78)=L78
Set Matrix(89)=L89
Set Matrix(90)=L90
Set Matrix(91)=L91
Set Matrix(92)=L92
Set Matrix(93)=L93
Set Matrix(94)=L94
Set Matrix(105)=L105
Set Matrix(106)=L106
Set Matrix(107)=L107
Set Matrix(108)=L108
Set Matrix(109)=L109
Set Matrix(110)=L110
Set Matrix(121)=L121
Set Matrix(122)=L122
Set Matrix(123)=L123
Set Matrix(124)=L124
Set Matrix(125)=L125
Set Matrix(126)=L126
Set Matrix(127)=L127

Is this the code that needs be be modified?



#2 kiwi

kiwi

    Pinball Fan

  • VIP
  • 2,517 posts

  • Flag: Italy

  • Favorite Pinball: Star Trek 25th Anniversary



Posted 24 April 2024 - 03:55 PM

The lights are on the playfield, in the maze area, that's where you need to change the base color of the lights.

 

If we are talking about the same table, the red lights are placed in the layer 8, simply select only that layer to edit the lights.



#3 spisi69

spisi69

    Enthusiast

  • Members
  • PipPipPip
  • 290 posts
  • Location:Long Island

  • Flag: United States of America

  • Favorite Pinball: Bad Cats

Posted 24 April 2024 - 04:41 PM

Cool...Thanks!