[Semi-Official] #Pokelua. |
Animalkirby « Citoyen » 1479868620000
| 0 | ||
Thiagotatu a dit : /support |
Ryuimoogi « Citoyen » 1479882840000
| 0 | ||
Why is bagon broken (R.I.P rping as Bacon the bagon with my RP partners) |
0 | ||
Milkybum a dit : my popplio was rejected......... i guess it was because i cropped the sprite (it was originally 96x96) but i worked pretty well on it so idk should i resize it back? im also aware that submissions are closed but can i do it with they open again? Dernière modification le 1479898680000 |
Senhor_eevee « Citoyen » 1479913440000
| 0 | ||
Note: [Sorry , I Don't know how edit the Post.] In Pokémon Searcher, Would be 1 - 7 gen And fakemons . |
Emmalilu « Citoyen » 1479917040000
| 0 | ||
fix rowlet (again), bagon, diancie, braixen, bunnelby, weepinbell Dernière modification le 1479922440000 |
Saintgio « Consul » 1479923340000
| 0 | ||
Thiagotatu a dit : Riannaleo says: by clicking on your avatar/ username and pressing "Edit". |
Senhor_eevee « Citoyen » 1479936960000
| 0 | ||
Oh thanks. |
0 | ||
Good news, the next days I will focus myself more on the alignment of the Pokemons, I've noticed that there is just too much broken. Might as well include fixing the sprite issues which got reported here. I've also worked out a little design for the Pokemon Searcher, it is just a work in progress concept, nothing is definitive. |
Animalkirby « Citoyen » 1479937500000
| 0 | ||
It looks wonderful so far Jordy! Keep it up and take your time |
Senhor_eevee « Citoyen » 1479942900000
| 0 | ||
Oh My God! I can't believe Jordyn is making This!! :D |
Turmoline « Citoyen » 1479950520000
| 0 | ||
JordyNL a dit : This is fantastic! but the only thing that's bothering me is the color of the dashes and the pick a category text's color not tryna be rude,just a personal preference :) Dernière modification le 1479957180000 |
0 | ||
I'm open for color suggestions |
Error_404 « Consul » 1479995760000
| 0 | ||
Hey open for color suggestions I'm d-a-d |
Silversprit « Citoyen » 1480001520000
| 0 | ||
Jordy its looking GREAT |
Senhor_eevee « Citoyen » 1480020900000
| 0 | ||
Ok. Windows - Light Blue Generations name & letter : Yellow P o k e S e a r c h e r : Dark Blue Also, Jordyn, If you can, Put a pic of the Pkmn sprite in the front Like When i search Mew and appear the Result, Appear the Pkmn front-sprite. |
Silversprit « Citoyen » 1480026660000
| 0 | ||
Thiagotatu a dit : you come up with great things |
Senhor_eevee « Citoyen » 1480030620000
| 0 | ||
silversprit a dit : Thanks ^^ EDIT: Also, Jordyn, If you want, You can put !pokesearcher Or !pkmnsearcher Dernière modification le 1480031760000 |
Saintgio « Consul » 1480034700000
| 0 | ||
Little code to play with the colors (Works fine in Chrome and Opera and .exe) --colors pokesearch="ffff00" generation_and_letter="2ECF73" window=0xffff00 pickacategory="606090" lines="ffff00" --texts line="<font size='5px'>\n<font size='11px'><font color='#"..lines.."'>__________________________________________________________________________________________<font size='15px'>\n<font size='11px'>" letters="<font color='#"..generation_and_letter.."'>A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z" function num2hex(num) local hexstr = '0123456789abcdef' local s = '' while num > 0 do local mod = math.fmod(num, 16) s = string.sub(hexstr, mod+1, mod+1) .. s num = math.floor(num / 16) end if s == '' then s = '0' end return s end function eventTextAreaCallback(id,n,ev) if ev=="window" then ui.showColorPicker (1, n, window, "Window Color") elseif ev=="poke" then ui.showColorPicker (2, n, tonumber(pokesearch,16), "Poke Search Color") elseif ev=="letters" then ui.showColorPicker (3, n, tonumber(generation_and_letter,16), "Generation and Letters") elseif ev=="category" then ui.showColorPicker (4, n, tonumber(pickacategory,16), "Pick a Category") elseif ev=="lines" then ui.showColorPicker (5, n, tonumber(lines,16), "Lines") end end function eventColorPicked(id, name, color) if color~=-1 then if id==1 then window=color ui.addTextArea(1,"<font size='8px'><a href='event:window'>Window",nil,30, 25, 60, 12, 0x000000, window,0.9,false) elseif id==2 then pokesearch=tostring(num2hex(color)) ui.addTextArea(2,"<font size='8px'><a href='event:poke'>Poke Search",nil,100, 25, 60, 12, 0x000000, tonumber(pokesearch,16),0.9,false) elseif id==3 then generation_and_letter=tostring(num2hex(color)) ui.addTextArea(3,"<font size='8px'><a href='event:letters'>Letters",nil,170, 25, 60, 12, 0x000000, tonumber(generation_and_letter,16),0.9,false) elseif id==4 then pickacategory=tostring(num2hex(color)) ui.addTextArea(4,"<font size='8px'><a href='event:category'>Category",nil,240, 25, 60, 12, 0x000000, tonumber(pickacategory,16),0.9,false) elseif id==5 then lines=tostring(num2hex(color)) ui.addTextArea(5,"<font size='8px'><a href='event:lines'>Lines",nil,310, 25, 60, 12, 0x000000, tonumber(lines,16),0.9,false) end line="<font size='5px'>\n<font size='11px'><font color='#"..lines.."'>__________________________________________________________________________________________<font size='15px'>\n<font size='11px'>" letters="<font color='#"..generation_and_letter.."'>A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z" ui.addTextArea(0,"<p align='center'><font size='11px' color='#"..pokesearch.."'>P o k e S e a r c h\n<b>"..line.."\n"..letters.."\n"..line.."\n<font color='#"..generation_and_letter.."'>Kanto - Jotho - Hoenn - Sinnoh - Unova\n"..line.."\n\n\n\n\n\n\n<font size='35px' color='#"..pickacategory.."'>Pick a category",nill,25,47,745,342, 0x000000,window,0.9,false) end end ui.addTextArea(0,"<p align='center'><font size='11px' color='#"..pokesearch.."'>P o k e S e a r c h\n<b>"..line.."\n"..letters.."\n"..line.."\n<font color='#"..generation_and_letter.."'>Kanto - Jotho - Hoenn - Sinnoh - Unova\n"..line.."\n\n\n\n\n\n\n<font size='35px' color='#"..pickacategory.."'>Pick a category",nill,25,47,745,342, 0x000000,window,0.9,false) ui.addTextArea(1,"<font size='8px'><a href='event:window'>Window",nil,30, 25, 60, 12, 0x000000, window,0.9,false) ui.addTextArea(2,"<font size='8px'><a href='event:poke'>Poke Search",nil,100, 25, 60, 12, 0x000000, tonumber(pokesearch,16),0.9,false) ui.addTextArea(3,"<font size='8px'><a href='event:letters'>Letters",nil,170, 25, 60, 12, 0x000000, tonumber(generation_and_letter,16),0.9,false) ui.addTextArea(4,"<font size='8px'><a href='event:category'>Category",nil,240, 25, 60, 12, 0x000000, tonumber(pickacategory,16),0.9,false) ui.addTextArea(5,"<font size='8px'><a href='event:lines'>Lines",nil,310, 25, 60, 12, 0x000000, tonumber(lines,16),0.9,false) (In your tribe house type /lua and copy the code.) Dernière modification le 1480048380000 |