Nickalooose
--------------------
- 1,309
- Posts
- 17
- Years
- Seen Dec 28, 2023
This is something I've never done before so, I'm assuming I make a new thread for this... If not, explain where and I'll do that next time haha.
I'm using the "new years" Essentials.
So far, I've come across some dodgy things with adding Pokémon and trading, if you set no nickname, the Pokémon has no name at all...
Leaves PIKACHU's name as blank, Nevertheless, I fixed this myself, now, adding a foreign Pokémon on the other hand, I'm having more trouble with, reading the wiki (which explains nothing in all fairness), using;
Gives an error...
Exception: SyntaxError
Message: (eval):1:in `pbExecuteScript'compile error
(eval):1: syntax error
***Full script:
$Trainer.party[$Trainer.party.length-1](
poke.makeShiny,
poke.status=1,
poke.statusCount=3
)
Interpreter:275:in `pbExecuteScript'
Interpreter:1592:in `command_355'
Interpreter:493:in `execute_command'
Interpreter:193:in `update'
Interpreter:106:in `loop'
Interpreter:198:in `update'
Scene_Map:103:in `update'
Scene_Map:101:in `loop'
Scene_Map:114:in `update'
Scene_Map:68:in `main'
Also gives an error...
Exception: SyntaxError
Message: (eval):1:in `pbExecuteScript'compile error
(eval):1: syntax error
***Full script:
$Trainer.party[$Trainer.party.length-1](
poke.makeShiny,
poke.status=1
)
Interpreter:275:in `pbExecuteScript'
Interpreter:1592:in `command_355'
Interpreter:493:in `execute_command'
Interpreter:193:in `update'
Interpreter:106:in `loop'
Interpreter:198:in `update'
Scene_Map:103:in `update'
Scene_Map:101:in `loop'
Scene_Map:114:in `update'
Scene_Map:68:in `main'
Gives the same error...
Exception: SyntaxError
Message: (eval):1:in `pbExecuteScript'compile error
(eval):1: syntax error
***Full script:
$Trainer.party[$Trainer.party.length-1](
poke.makeShiny
)
Interpreter:275:in `pbExecuteScript'
Interpreter:1592:in `command_355'
Interpreter:493:in `execute_command'
Interpreter:193:in `update'
Interpreter:106:in `loop'
Interpreter:198:in `update'
Scene_Map:103:in `update'
Scene_Map:101:in `loop'
Scene_Map:114:in `update'
Scene_Map:68:in `main'
Does nothing (obviously)...
But upon checking the newly added Pokémon VIA Pokémon menu, the name is blank, IF, no nickname is given... I'm having trouble fixing this one!
There are a couple problems with this, as you see in GREEN, PIKACHU should have no nickname and as you see in RED, PIKACHU should be female...
Here you can see, PIKACHU has no name at all and his gender seems to be male...
Adding new lines within the adding foreign Pokémon script section, causes errors like, undefined method shiny or item and so on...
Is there any fixes for this yet? Or even any ideas, I'll try anything once.
This is such a stupid problem, but it is a problem and I cannot solve this myself...
Another problem I found...
Surfing, you cannot walk on water, true, you cannot swim on land, true...
But if you choose to surf, as long as and autotile is surfable, despite it being underneath a non surfable tile, you can surf on it...
Pic1; Facing Water
Pic2; Facing Land
Pic3; Surfing Water
Pic4; Surfing Land
Pic5; Exiting Water VIA Land
I figure this is the, player facing tile, script, is not checking if the tile is a land tile and/or is skipping the land tile because it found a surfable tile... the reason I have come across this error is because the illusion of under water paths, needs the autotile to seem as though it continues under ground, but if I stop the water at land, it will have the grass edges as you can see in the pictures...
Any solutions?
These problems are bugging me to where I've stopp progress on my game to attempt to fix, but after everything I tried, I give up, maybe someone here has a fix. Thanks for reading.
I'm using the "new years" Essentials.
So far, I've come across some dodgy things with adding Pokémon and trading, if you set no nickname, the Pokémon has no name at all...
Code:
pbStartTrade(pbGet(1),
PBSpecies::PIKACHU,
"","Bob"
)
Code:
$Trainer.party[$Trainer.party.length-1](
poke.makeShiny,
poke.status=1,
poke.statusCount=3
)
Spoiler:
Exception: SyntaxError
Message: (eval):1:in `pbExecuteScript'compile error
(eval):1: syntax error
***Full script:
$Trainer.party[$Trainer.party.length-1](
poke.makeShiny,
poke.status=1,
poke.statusCount=3
)
Interpreter:275:in `pbExecuteScript'
Interpreter:1592:in `command_355'
Interpreter:493:in `execute_command'
Interpreter:193:in `update'
Interpreter:106:in `loop'
Interpreter:198:in `update'
Scene_Map:103:in `update'
Scene_Map:101:in `loop'
Scene_Map:114:in `update'
Scene_Map:68:in `main'
Code:
$Trainer.party[$Trainer.party.length-1](
poke.makeShiny,
poke.status=1
)
Spoiler:
Exception: SyntaxError
Message: (eval):1:in `pbExecuteScript'compile error
(eval):1: syntax error
***Full script:
$Trainer.party[$Trainer.party.length-1](
poke.makeShiny,
poke.status=1
)
Interpreter:275:in `pbExecuteScript'
Interpreter:1592:in `command_355'
Interpreter:493:in `execute_command'
Interpreter:193:in `update'
Interpreter:106:in `loop'
Interpreter:198:in `update'
Scene_Map:103:in `update'
Scene_Map:101:in `loop'
Scene_Map:114:in `update'
Scene_Map:68:in `main'
Code:
$Trainer.party[$Trainer.party.length-1](
poke.makeShiny
)
Spoiler:
Exception: SyntaxError
Message: (eval):1:in `pbExecuteScript'compile error
(eval):1: syntax error
***Full script:
$Trainer.party[$Trainer.party.length-1](
poke.makeShiny
)
Interpreter:275:in `pbExecuteScript'
Interpreter:1592:in `command_355'
Interpreter:493:in `execute_command'
Interpreter:193:in `update'
Interpreter:106:in `loop'
Interpreter:198:in `update'
Scene_Map:103:in `update'
Scene_Map:101:in `loop'
Scene_Map:114:in `update'
Scene_Map:68:in `main'
Code:
$Trainer.party[$Trainer.party.length-1]
But upon checking the newly added Pokémon VIA Pokémon menu, the name is blank, IF, no nickname is given... I'm having trouble fixing this one!
Code:
pbAddForeignPokemon(PBSpecies::PIKACHU,32,_I("Bob"),_I([B][COLOR=SeaGreen]""[/COLOR][/B]),[B][COLOR=Red]1[/COLOR][/B])
Spoiler:
![[PokeCommunity.com] A Few Problems with Trading and Surfing [PokeCommunity.com] A Few Problems with Trading and Surfing](https://i327.photobucket.com/albums/k446/Nickalooose/ErrorPicture.png)
Here you can see, PIKACHU has no name at all and his gender seems to be male...
Adding new lines within the adding foreign Pokémon script section, causes errors like, undefined method shiny or item and so on...
Is there any fixes for this yet? Or even any ideas, I'll try anything once.
This is such a stupid problem, but it is a problem and I cannot solve this myself...
Another problem I found...
Surfing, you cannot walk on water, true, you cannot swim on land, true...
But if you choose to surf, as long as and autotile is surfable, despite it being underneath a non surfable tile, you can surf on it...
Spoiler:
![[PokeCommunity.com] A Few Problems with Trading and Surfing [PokeCommunity.com] A Few Problems with Trading and Surfing](https://i327.photobucket.com/albums/k446/Nickalooose/ErrorPicture2.png)
Pic1; Facing Water
Pic2; Facing Land
Pic3; Surfing Water
Pic4; Surfing Land
Pic5; Exiting Water VIA Land
I figure this is the, player facing tile, script, is not checking if the tile is a land tile and/or is skipping the land tile because it found a surfable tile... the reason I have come across this error is because the illusion of under water paths, needs the autotile to seem as though it continues under ground, but if I stop the water at land, it will have the grass edges as you can see in the pictures...
Any solutions?
These problems are bugging me to where I've stopp progress on my game to attempt to fix, but after everything I tried, I give up, maybe someone here has a fix. Thanks for reading.