I need help with some functions i never used lol ! Sorry for looking like a noob guys !
function procCmd(cmd)
Can you explain how and what i need to do to use this !
This also how do you use it ? Is there extra stuff needed to use this ? like var's ?
functionModPE.setTerrain(url);
function ModPE.setItems(url);
function ModPE.setGuiBlocks(url);
function ModPE.resetImages();
What are these ? How do i use them and are they for andriod or ios ? is the (url) like a texture pack ?
function Level.setNightMode(isNight);
function Level.getTile(x,y,z);
function Level.explode(x, y, z, radius);
function Level.setTile(x,y,z,type);
function Level.getAddress();
function Level.spawnChicken(x,y,z,image);
function Level.spawnCow(x,y,z,image);
Whats the diff from these and these ?
function spawnChicken(x,y,z,image);
function spawnCow(x,y,z,image);
Didn;t want to paste it all ! But whats the difference and how do i use it ?
I need help with some functions i never used lol ! Sorry for looking like a noob guys !
function procCmd(cmd)
Can you explain how and what i need to do to use this !
This also how do you use it ? Is there extra stuff needed to use this ? like var's ?
functionModPE.setTerrain(url);
function ModPE.setItems(url);
function ModPE.setGuiBlocks(url);
function ModPE.resetImages();
What are these ? How do i use them and are they for andriod or ios ? is the (url) like a texture pack ?
function Level.setNightMode(isNight);
function Level.getTile(x,y,z);
function Level.explode(x, y, z, radius);
function Level.setTile(x,y,z,type);
function Level.getAddress();
function Level.spawnChicken(x,y,z,image);
function Level.spawnCow(x,y,z,image);
Whats the diff from these and these ?
function spawnChicken(x,y,z,image);
function spawnCow(x,y,z,image);
Didn;t want to paste it all ! But whats the difference and how do i use it ?
dont use function spawnChicken(x,y,z,image);
use function
Level.spawnMob(x,y,z,mobId,"image") {
the mob id is
10-13 = neutral(chicken,cow,pig,sheep)
function procCmd(cmd)
Can you explain how and what i need to do to use this !
This also how do you use it ? Is there extra stuff needed to use this ? like var's ?
functionModPE.setTerrain(url);
function ModPE.setItems(url);
function ModPE.setGuiBlocks(url);
function ModPE.resetImages();
What are these ? How do i use them and are they for andriod or ios ? is the (url) like a texture pack ?
function Level.setNightMode(isNight);
function Level.getTile(x,y,z);
function Level.explode(x, y, z, radius);
function Level.setTile(x,y,z,type);
function Level.getAddress();
function Level.spawnChicken(x,y,z,image);
function Level.spawnCow(x,y,z,image);
Whats the diff from these and these ?
function spawnChicken(x,y,z,image);
function spawnCow(x,y,z,image);
Didn;t want to paste it all ! But whats the difference and how do i use it ?
function ModPE.setTerrain(url);
function ModPE.setItems(url);
function ModPE.setGuiBlocks(url);
Click Banner to SUBSCRIBE!!! I'm in the Team Flame Clan!!! Click that little green arrow!! -------------->
I know java script very well but what use is it if i don't know what functions do what ! & How i can use them tell me that sir !
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumThese three are iOS only: they set texture packs.
Use:
ModPE.setTerrain("http://i.imgur.com/asdf.png");will replace terrain.png with the linked image.
I'll work on Android support for this later.
dont use function spawnChicken(x,y,z,image);
use function
Level.spawnMob(x,y,z,mobId,"image") { the mob id is 10-13 = neutral(chicken,cow,pig,sheep)