HU/Element/Ped: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
A "ped" szó a "pedestrian" rövidítése és meghatározza az összes személyt a GTA-ban, lehet egy játékos vagy egy NPC karakter. (Annak ellenére, hogy a "pedestrian" technikailag nem vonatkozik azokra a játékosokra, akik vezetnek, még mindig e név alá tartoznak)
A "ped" szó a "pedestrian" rövidítése és meghatározza az összes személyt a GTA-ban, lehet egy játékos vagy egy NPC karakter. (Annak ellenére, hogy a "pedestrian" technikailag nem vonatkozik azokra a játékosokra, akik vezetnek, még mindig e név alá tartoznak)


The [[createPed]] function specifically creates an NPC, but all other ped functions work on both players and NPC's as they're pretty much the same thing to San Andreas.
A [[hU/createPed|createPed]] funkció kifejezetten NPC-t hoz létre, de minden más ped funkció működik mind a játékosok, mind az NPC-k számára as they're pretty much the same thing to San Andreas.


The element type of a NPC is '''"ped"'''.
The element type of a NPC is '''"ped"'''.

Revision as of 19:12, 7 October 2018

A "ped" szó a "pedestrian" rövidítése és meghatározza az összes személyt a GTA-ban, lehet egy játékos vagy egy NPC karakter. (Annak ellenére, hogy a "pedestrian" technikailag nem vonatkozik azokra a játékosokra, akik vezetnek, még mindig e név alá tartoznak)

A createPed funkció kifejezetten NPC-t hoz létre, de minden más ped funkció működik mind a játékosok, mind az NPC-k számára as they're pretty much the same thing to San Andreas.

The element type of a NPC is "ped".

XML syntax

<ped model="" posX="" posY="" posZ="" rotZ="" interior="" frozen="" />

Required Attributes

  • model: The character skin ID of the ped being created.
  • posX: A float representing the X position of the ped.
  • posY: A float representing the Y position of the ped.
  • posZ: A float representing the Z position of the ped.

Optional Attributes

  • rotZ: A float representing the Z rotation of the ped.
  • interior: A interior where the ped spawns.
  • frozen: A bool indicating whether the ped should be capable of moving

Related scripting functions

Fordította