Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Roujo

Members
  • Posts

    150
  • Joined

  • Last visited

    Never

Everything posted by Roujo

  1. @My brother: > I'm working on my new project on Eclipse Origins. > > I can put potions and the starter skills on my quickslots (f1 to f12) and use them. > But when I create a new skill, I can put it on a slot (ex.:f2) but I can't use it, I have to go in skills and double click on it. > > Can someone help? P.S: That was my brother posting this, using my account… He just made an account, his name is Nynouchka, and he'll be taking over this topic. =P
  2. Roujo

    I am wasted

    OMG! The GoShopping command! I didn't know it existed! =) This is really helpful, thank you! Roujo
  3. Roujo

    Working on mining

    Cool! I didn't know it did that. ^^ My bad! Roujo
  4. Yeah, I think everyone got that. (^_^) Something funny: When you use redirection with programs like UltraSurf / Your Freedom, those ads say you live wherever the proxy is and then claim that "YOUR PRIVACY IS UNDER ATTACK!!!", even though you live thousands of miles away! XD
  5. Roujo

    Working on mining

    Actually, OnNPCDeath doesn't kill an NPC, it is called when one _is_ killed, though. We're trying to find a way to kill a Scripted NPC by script. Like a way to tell the NPC to self-terminate. XD
  6. Roujo

    I am wasted

    Uhh… That's a source edit, right? Is there a way to do this without editing the source?
  7. Roujo

    Wisdom teeth

    I just got mine removed last week -all 4 - and oddly/luckily it healed so well that the next morning I woke up not remembering that I had stitches in my mouth. The taste of blood brought me back to reality, but otherwise I was up and about. I'll send you good waves of energy so you can heal soon! A month is a long time to keep from talking too much. =P Warning - while you were typing a new reply has been posted. You may wish to review your post. @Zetta: > ha. that sucks. Whats worse is when food comes out of the stitches . Yeah… That's a problem. XD And you can't brush there too hard to take it out 'cause it hurts... Oh well.
  8. Yeah, it would get a little very code-heavy, but it would work. Here's a workaround, however, which works if you allow every Pokemon to evolve at the same levels - every basic pokemon evolves to stage 1 at level 35 and then at level 70, for example. ``` ' Executes when a players experience exceeds the next level requirement. Sub PlayerLevelUp(Index) Dim TotalExp Dim Levels Do While GetPlayerExp(Index) >= GetPlayerNextLevel(Index) TotalExp = GetPlayerExp(Index) - GetPlayerNextLevel(Index) Call SetPlayerLevel(Index, GetPlayerLevel(Index) + 1) Levels = Levels + 1 Call SetPlayerPOINTS(Index, GetPlayerPOINTS(Index) + 1) Call SetPlayerExp(Index, TotalExp) Loop If Levels = 1 Then Call MapMsg(GetPlayerMap(Index), GetPlayerName(Index) & " has gained a level!", 0) Else Call MapMsg(GetPlayerMap(Index), GetPlayerName(Index) & " has just won " & Levels & " levels!", 0) End If Call BattleMsg(Index, "You have " & GetPlayerPOINTS(Index) & " stat points.", BRIGHTBLUE, 0) 'Pokemon Evolution Script by Roujo ^_^ Dim Level Dim PokeNum Level = GetPlayerLevel(index) PokeNum = GetPlayerClass(index) Select Case Level Case 35 Select Case PokeNum Case 1 Call SetPlayerClass(index, 2) 'Because Bulbasaur evolves into Ivysaur Call SetPlayerSprite(index, 2) 'This implies that your sprite sheet fits Pokemon Numbers =P Case 4 Call SetPlayerClass(index, 5) 'Because Charmander evolved into Charmeleon Call SetPlayerSprite(index, 5) Case 7 ... //And so on and so forth 'till Case 459 Call SetPlayerClass(index, 460) 'Snover to Abomasnow, last know Pokemon to evolve. Call SetPlayerSprite(index, 460) End Select Call SendPlayerData(index) If GetPlayerClass(index) != PokeNum Then Call PlayerMsg(index, "You have evolved into " & GetPlayerClassName(index) & "!", 9) End If Case 70 Select Case PokeNum Case 2 Call SetPlayerClass(index, 3) 'Ivysaur to Venosaur Call SetPlayerSprite(index, 3) Case 5 Call SetPlayerClass(index, 6) 'Charmeleon to Charizard Call SetPlayerSprite(index, 6) Case 8 ... //And so on and so forth 'till Case 444 Call SetPlayerClass(index, 445) 'Garbite to Garchomp, last know Pokemon to evolve to Stage 2. Call SetPlayerSprite(index, 445) End Select Call SendPlayerData(index) If GetPlayerClass(index) != PokeNum Then Call PlayerMsg(index, "You have evolved into " & GetPlayerClassName(index) & "!", 9) End If Case 100 Call PlayerMsg(index, "Congratulations!", 9) Call GlobalMsg("Player " & GetPlayerName(index) & " has reached Level 100!", 9) End Select 'End of Pokemon Evolution Script by Roujo End Sub ``` It's been a while since I've played Pokemon, but I found the info in on [this website](http://bulbapedia.bulbagarden.net/wiki/List_of_Pokémon_by_evolution_family). I even added an Evolution Message, plus a special Level 100 message. =P Use them if you want to! ^^ Anyway, I hope this helps! =) Roujo EDIT: Changed the comment marks from // to ' –- It has been a while since I've played with SadScript XD
  9. Roujo

    I am wasted

    I'm not sure that Shopkeeper NPCs work, actually… The only way I've been able to open a shop window is through the Shop tile attribute, so if your trying the NPC way, this might be your problem. If not, reply back, you'll find help! =)
  10. Roujo

    Working on mining

    Well, you would have to tell the NPC to disappear, as it won't do it on it's own. As for the function that does that, I'll take a look and see what I can find. ^^
  11. You can simply put it in Sub PlayerLevelUp(Index), just before the End Sub, at the very end. ^^ Also, you could post your topic in the Questions forum next time. =P That way, you might get an answer more quickly AND your posts would count towards your total. ^^
  12. Uhhh… Thanks for the win, but I believe Squiddle should win. He has a speed of 1.05 seconds per click, which is _faster_ than Anna Commena's 1.25 seconds per click. The thing is, we're not talking about clicks per second, we're talking about the amount of time it takes to make one click. In that case, smaller is better. =) Anyway, that's the way I see it ^^ Roujo
  13. The fastest clicker is Squiddle, so he's the one who's gonna finish first. Explanation: The time starts ticking with the first click and ends with the last click. So when it is said that Anna Commena can click a mouse 5 times in 5 seconds, it means that the last click is made at the 5 second mark. This means that there are 4 intervals between the clicks (5 clicks) in 5 seconds, which amounts to 1.25 second per click. Here's the summary: Anna Commena: 5/4 = 1.25 seconds/click Admiral: 10/9 = 1.11 seconds/click Squiddle: 20/19 = 1.05 seconds/click Therefore, with an average clicking speed of 1.05 seconds per click, Squiddle would be the first to reach 40 clicks. ^^ Case closed, am I right? =) Roujo P.S: I beat you all, I can easily do 6 clicks/second, and that's 0.166 second/click. ;)
  14. Yep, I have Diamond edition, if I can just find my CD-Keys… =P This might be a problem, actually. XD Anyway, I'm looking forward to seeing the module! =) Roujo
  15. Roujo

    Lag in 2.8

    Ok… So _that's_ it. =) To "solve" this in 2.7, I added a /reset command that warped the player to his current server side coordinates. Well, it may be a bit laggy, but the fix works! I haven't had out-of-sync since 2.8, now that I think of it. We'll just have to wait 'till the kinks are ironed out. ^^ Roujo
  16. Here's a link to a Paperdoll tutorial, I hope it helps! =) http://www.touchofdeathforums.com/smf/index.php?topic=47572.0 Have fun! ^^ Roujo
  17. Roujo

    Lag in 2.8

    Hi ^^ Well, I just made the move to 2.8 and I'm having the same kind of problem: when I'm running, my character keeps missing/adding steps, so the display lags a bit. My position is good, though - no sync problem with the server. I'm running Vista Business on a Core 2 Duo T8100 (2.1 GHz) laptop with 2 Gb of RAM and I had no such problems with 2.7 . One last thing: I'm running the server on the laptop as well, which I also did on 2.7, so network/internet speeds are not the issue here. ^^
  18. Marsh got shoes while he went away from your mom, from you plowing the front of Canadia. Then, he banned you for double posting about me, which caused a huge scandal between pokemon and yugioh because your father accidentally killed a hippopotamus with a toothbrush. Meanwhile, fireflies weren't real because Eclipse won the fight between various lepers whose pants died. Cancer, unable to sustain proper dehydration, began drooling all over a picture of Ninja-Tech who died because of a giant ape god. Kreator stopped pixel art, and the world ended! This topic is never ending. Meanwhile, Renzo was returning to Eclipse, and screamed "I AM BACK!" But, Mars was inhabited by squares that rofled over their PedoBear overlords, who always raped mathematics with poor long division. Renzo saw this and decided to call Marsh up and demand Millions. Blueberry tart tastes like poop because Emblem thinks the cats' pants did something illegal, like losing the game - again. Meanwhile Kreator was merrily skipping school when Sasuke started staring Renzo on a giant giraffe emperor while Kreator was riding tornadoes in Mexico's taco land. This angered Ambard, who began a war with non-existent chilidogs. When epic flying chimps chowed on the head of Renzo the PedoBear, children everywhere were crying for chilidogs. DrNova exploded by eating a Lesser-Triumphalism, when Buddha appeared in disguise as Chakkra! This astonished Hippoman when he flew out of Bangladesh in white undergarments, frying pancakes. Then Rick Astley smacked Zelcon in the face for rick-rolling. Your mom carefully determined what the meaning of 42 is, as pie flew through the air. Then the Asian (Japez) exploded all over the flying pie after Mesmero got up. Not only mass-murdering Gwens worldwide spread hate and deadly sulfuric kitties. Then a mesmerizing Pez-dispensing mass-murdering undeniable unforeseeable chocolate bunny raped Renzo; who laughed because he was getting pwned by your hair. Meanwhile, (Panda)'s morphed Chihuahua kitten danced on Gwen while she Bangladeshi (panda)'s mother's nostrils. Now Renzo can finally forget how he was raped. Unable to explode, the jealous Renzo slapped Britney Spears with his whatchamacallit. Britney killed 'her' cat so she could win another Canadian guy's marijuana! Homer Simpson explored Renzo's long green spaceship-looking chihuahua while eating blue-ish meatloaf monster. Renzo's zipper flew down. Up stretched the enormous escalating robotic kitten-flavored escalator killing Renzo who died but didnt die. He groped Anna's fluorescent pink light bulbs. Soljah lost all his sighting-glass filled by maids who only eat Thursdays. Twelve pipers played 13 maids at the milking glass. After Bangladeshi The Banana Republic, which just flew past the pie-shoppe. This love-tacular mating-call cellphone-chomping badger who molested you while making renzo's Popsicles drip, but raped not only renzo, but also Hippoman. Marsh blew his load of tacos right into a stand of poo! While a cow poofter on Waffle, while being flown in by air force one WHILE Waffle ate waffles vehemently while staring at gwen admiring waffles that stared vigorously towards eggs. Then while a flying Batman-eating goose typed many unpredictable novels expressing unto Renzo about pineapples endangering many small species of mordor including marsh with malaria and several STDs. This caused my mesmerising glasses to explode spontaneously into oblivion where god didn't exist and Lucifer ruled nothing. Spaghetti was unable to ban Maxac unfortunately because KrauftRolls were the best at everything. Suddenly Brick-Wall man krauftrolled Super high pants man pwning the ultimate wrestler boxer fisherman named Duck Chorris. Who would have guessed that Brick-wall man could eat fifty-five hundred and a half tacos while climbing mt. everest. Yorty continuously sniffed ice on the shore when suddenly a very omnipotent marshmallow melted into the very thing that Hippoman dreaded which was kreator's left leg. Pedobear blew up in a photo-shoot with Conan O'neil yesterday while KrauftRolling. Krauftrolling expanded to Google Earthâ„¢ which caused the space time BOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOM again. Whoever thought that AkselJ was cool, temperture-wise was annoying and needs many animal crackers. Global penguin space velociraptors necroposted handicapped Dr. Novas when never did the little peanut think that running away was pancake. A Mexican ROFLOLMAOed on top of your house and sang the Ger into a cone of french fries. Instead you wanted a cheese burger, covered in chocolate chip cookies. Inexorably my tail bone was annexed by the sulfuric acid chambermen. Meanwhile, AkselJ won in "Guess the person that's gonna post below you game" and Hippoman was eating his head. Renzo blew into a box where AkselJ lived as a hobo eating green "That". Evil Cancer ridden zombies flew past the steamy swampy marsh who spammed evil smileys named Hippoman. "Cool!" Said Hippoman as she I mean he just kidding I do mean she but really AkselJ is so gay because he rhymes with gay. Haha, I gotta stop jokin' AkselJ is not gay. We all know he is. NOT! oh wait i lied, he is gay. Wait, I did not. He is not gay. And Hippoman should stop saying so. then we agree, as Allah really is Alpha just misspelled. Hippoman lol'd because of naked llamas who wore many hard-hats flew through the cave of death. ZelconGames screwed up 3.0, by resealing the Java windows of jelly marshmallows. Then suddenly Mirror Force appeared, combined with Solemn Judgement, but he had Counter Counter prepared, and Macro Cosmos was on too! Then he activated Dimensional Prison, but his enemy had a Return from the Different Dimension… WOOSH! Chaos Sorcerer back on the field, being unbanned for a few months now, he kicks the opponent's life points to zero, gets the SUPARCARDGAMEPOWA. and then Godlord came in, saying that it now was time to D-D-D...DDDDDDDUEL again! Chicken imploded with subtlety as Tiggilyboo anagrammatically anagrammed tome of Yorty as Hippoman got the 600th post. I am so important that Yorty blew orange chewing gum all over Marsh before he spammed so much Bill Gates died. Mcnugget (patrick), dismayed mcnuggets while eating shoes and blowing up. Fleshlightman was stupid that day so he fapped a lot that DNA Virus started a new topic. Mcnugget also said roflmao when Hippoman went to sleep. Therefore, ------------ Wow, it's fun to see that this topic, which I started on January 5, is _still_ alive! Keep up the nonsense, guys! =)
  19. Actually, if you stay on LAN, you could have no Internet at _all_ and I should still work… As Zetta Monkey says, it's probably your router if you say that your computer keeps disconnecting from wireless. Good luck with that! =) Roujo
  20. I think Raichu is right on that one, you don't need to portforward if you use your Local IP adresses. Well, at least that's how it works at my place, too. You need portforwarding when you connect to your server from the internet and the host computer isn't alone on it's network, so the router needs to know that connections on port 4000 (for example) need to be routed to the host computer. When you connect to the host computer from _within_ the network, even from WLAN to LAN or vice versa, you just need to know the _Local_ IP adress of the host computer and connect to that. The router just transmits the connection normally, no need for portforwarding. So, as Raichu said, the problem may be the firewall in this case. Make sure your firewall lets the server accept connections on the host computer and lets the client make those connection attemps from your other computer. Please not that everything I just said is not the absolute truth. =P It is based on my experience, and on the fact that my laptop is connecting just fine from WLAN to my server on the desktop computer on LAN. Your results may vary, though I don't think they will. =) EDIT: Your problem may also be caused by the fact that your LAN and WLAN adresses are not on the same sub-network. For example, your LAN may be 192.168.0.XXX while your WLAN is 192.168.1.XXX . With the classic subnet mask of 255.255.255.0, this would cause the two networks to be separate… Though I think it would still work if you input the right adress... Anyway, just a thought.
  21. Roujo

    So then…

    Gratz! Way to go!!! =D
  22. Hi! =) Can you check if 192.168.0.100 is the Local IP adress of your host machine? To do this, go to the host computer and press the Windows key on your keyboard + R, then type in CMD, then press enter. A black command prompt should appear. In this prompt, type ipconfig, then press enter again. Your Local IP adress is the "IPv4 adress" under Local Area Network (or something like that, I have a French OS). It should look like 192.168.somestuff.morestuff . Try connecting to that adress with your other computer, and post back here if the problem persists. =) Or if the adress you found WAS 192.168.0.100 XD Hope I helped! Roujo
  23. Roujo

    LOTS OF QUESTIONS

    Welcome to the Eclipse forums, I hope everything goes well with your game. ^^ Before you go and ask questions, you probably should read the forum rules and browse through the Tutorials and Help sections, as AdrianC said. They contain a lot of interesting info, including the answer to your questions. Have fun in the forums! Roujo P.S: Give a man fish, he'll eat for a day. Teach him how to fish, and he'll eat for a lifetime. I suggest you go fish for answers, you'll know Eclipse better that way. ^^
  24. That's exactly it. =P Oh well… Just a coincidence, it seems. =)
  25. I know it has been on the Interwebs for a long time, it's just the timing of the timing that I found odd. =P BTW, I don't believe in that equation: I just find it funny. =P
×
×
  • Create New...