
Search found 160 matches
- 01 Sep 2014, 09:21
- Forum: Off-Topics
- Topic: TMarc: A faithful community member... 10000 posts!
- Replies: 27
- Views: 5548
Re: TMarc: A faithful community member... 10000 posts!
Thank you TMarc ! 

- 27 Aug 2014, 09:51
- Forum: Maniaplanet Reports
- Topic: [Fixed]Bug Home
- Replies: 5
- Views: 10011
- 27 Aug 2014, 09:46
- Forum: ManiaScript
- Topic: Question about CSmActionEvent
- Replies: 9
- Views: 2287
Re: Question about CSmActionEvent
Those events are to be used in the context of an action, made in the action maker. I would say that : - OnHitPlayer is called when a projectile of the action hits a player - OnProjectileStart is called when a projectile just appeared (e.g when you just pressed fire) - OnProjectileEnd is when the pro...
- 27 Aug 2014, 09:10
- Forum: Shootmania
- Topic: erreur 12029 [résolu]
- Replies: 6
- Views: 2685
Re: erreur 12029
Salut Boulito, Dans ce genre de cas de figure, la première chose à faire est de tester avec n'importequel editeur de texte (sauf si le fichier iconnu fait plus d'une dizaine de Mo). Pour hosts effectivement il faut l'éditer avec un éditeur de texte, même le plus basique tel le "notepad&quo...
- 26 Aug 2014, 15:24
- Forum: Maniaplanet
- Topic: Planets: How to earn?
- Replies: 12
- Views: 2437
Re: Planets: How to earn?
It would indeed !
5000 Planets + 3 empty stations if i recall properly
.
5000 Planets + 3 empty stations if i recall properly

- 26 Aug 2014, 14:42
- Forum: Maniaplanet
- Topic: Planets: How to earn?
- Replies: 12
- Views: 2437
Re: Planets: How to earn?
I'm not a specialist of the maniaplanet economic system, though i know that players with high planets amount, will get taxed so players with few planets receive at least some of it. Indeed to prevent wealth inequalities, haven't found the wikipedia article about Wealth inequalities on the ManiaPlane...
- 31 Jul 2014, 08:55
- Forum: Support & Bug Reports
- Topic: Server join problem!
- Replies: 10
- Views: 1925
Re: Server join problem!
Hello,
Are you trying to join the same server ?
Are you trying to join the same server ?
- 28 Jul 2014, 09:44
- Forum: ActionMaker and Item editor
- Topic: [SOLVED][Weapon Issue] I cant bump myself on walls.
- Replies: 7
- Views: 6331
Re: [Weapon Issue] I cant bump myself on walls. Only floor.
From what i read (i haven't looked at the AM for a while) the vertical setting being a "Ratio", i would say that if you want to have the same bumping strength in every direction, just set it at 1.
Code: Select all
VerticalStrength = HorizontalStrength * VerticalStrengthRatio.
- 25 Jul 2014, 17:49
- Forum: ManiaScript
- Topic: [TM] PlaySound doesn't work
- Replies: 8
- Views: 1640
Re: [TM] PlaySound doesn't work
It's probably because Audio as to be used in a Layer, in the Player UI, so client-side and not server-side. You can also use the Sound Library to play custom sounds based on events from the server script. But you can't play sounds from the game's sounds. To use this custom sounds library : Add this ...
- 25 Jul 2014, 10:09
- Forum: ManiaScript
- Topic: [TM] PlaySound doesn't work
- Replies: 8
- Views: 1640
Re: [TM] PlaySound doesn't work
Hello, Yep, to play a sound in TM, you should try : Audio.PlaySoundEvent(CAudioManager::ELibSound::Checkpoint, 0, 0.); with 0. for full volume. If you want to make it quieter, remember the value is in dB, so use values like -6. or -15. for example (-40 being the minimum on MP if i recall correctly).