Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
Gannon001 committed Jun 30, 2017
1 parent 0d1d32e commit dbd07cb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 65 deletions.
75 changes: 14 additions & 61 deletions src_htmlPhone/README.md
Original file line number Diff line number Diff line change
@@ -1,68 +1,21 @@
## Téléphone pour FiveM
# src_htmlphone

### Appel event
```LUA
--==================================================================
-- Police
--==================================================================
-- Police [Signaler un vol]
TriggerEvent('police:callPolice', {type: 'Vole'})
-- Police [Signaler une agression]
TriggerEvent('police:callPolice', {type: 'Aggression'})
-- Police [Autre]
TriggerEvent('police:callPoliceCustom')
-- Police [Annuler l'appel en cour]
TriggerEvent('police:cancelCall')
> A Vue.js project
## Build Setup

--==================================================================
-- Ambulance
--==================================================================
-- Ambulance [Appel Coma]
TriggerEvent('ambulancier:callAmbulancier', {type: 'Vole'})
-- Ambulance [Appel ambulance]
TriggerEvent('ambulancier:callAmbulancier', {type: 'Aggression'})
-- Ambulance [Respawn]
TriggerEvent('ambulancier:selfRespawn')
-- Ambulance [Annuler l'appel en cour]
TriggerEvent('ambulancier:cancelCall')
``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

--==================================================================
-- Taxi
--==================================================================
-- Taxi [1 personne]
TriggerEvent('taxi:callService', {type: '1 personne'})
-- Taxi [2 personnes]
TriggerEvent('taxi:callService', {type: '2 personnes'})
-- Taxi [3 personnes]
TriggerEvent('taxi:callService', {type: '3 personnes'})
-- Taxi [Annuler l'appel en cour]
TriggerEvent('taxi:cancelCall')
# build for production with minification
npm run build

# build for production and view the bundle analyzer report
npm run build --report
```

--==================================================================
-- Mecano
--==================================================================
-- Mecano [Moto]
TriggerEvent('mecano:callMecano', {type: 'Moto'})
-- Mecano [Voiture]
TriggerEvent('mecano:callMecano', {type: 'Voiture'})
-- Mecano [Camionnette]
TriggerEvent('mecano:callMecano', {type: 'Camionnette'})
-- Mecano [Camion]
TriggerEvent('mecano:callMecano', {type: 'Camion'})
-- Mecano [Annuler l'appel en cour]
TriggerEvent('mecano:cancelCall')

--==================================================================
-- Urgence
--==================================================================
-- Ambulance
TriggerEvent('ambulancier:callAmbulancier', {type: 'Coma'})
-- Police
TriggerEvent('police:callPolice', {type: 'Homme à terre'})
-- Hopital
TriggerEvent('ambulancier:selfRespawn')

```
For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).
4 changes: 0 additions & 4 deletions src_htmlPhone/src/components/call/Call.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export default {
ignoreControls: false,
callList: [{
display: 'Police',
eventName: 'mecano:callMecano',
subMenu: [
{title: 'Signaler un vol', eventName: 'police:callPolice', type: 'Vole'},
{title: 'Signaler une agression', eventName: 'police:callPolice', type: 'Aggression'},
Expand All @@ -28,7 +27,6 @@ export default {
]
}, {
display: 'Ambulance',
eventName: 'mecano:callMecano',
subMenu: [
{title: 'Appel Coma', eventName: 'ambulancier:callAmbulancier', type: 'Coma'},
{title: 'Appel ambulance', eventName: 'ambulancier:callAmbulancier', type: 'Soin'},
Expand All @@ -37,7 +35,6 @@ export default {
]
}, {
display: 'Taxi',
eventName: 'mecano:callMecano',
subMenu: [
{title: '1 personne', eventName: 'taxi:callService', type: '1 personne'},
{title: '2 personnes', eventName: 'taxi:callService', type: '2 personnes'},
Expand All @@ -46,7 +43,6 @@ export default {
]
}, {
display: 'Mecano',
eventName: 'mecano:callMecano',
subMenu: [
{title: 'Moto', eventName: 'mecano:callMecano', type: 'Moto'},
{title: 'Voiture', eventName: 'mecano:callMecano', type: 'Voiture'},
Expand Down

0 comments on commit dbd07cb

Please sign in to comment.