Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   PlayerWorlds Main Forum (https://forums.graalonline.com/forums/forumdisplay.php?f=15)
-   -   Graal X - Doing it again =o (https://forums.graalonline.com/forums/showthread.php?t=68539)

Crono 09-25-2006 11:11 PM

Quote:

Originally Posted by Sum41Freeeeek (Post 1222221)
Yes dear

No you don't.

zim5354 09-25-2006 11:22 PM

Quote:

Originally Posted by Sum41Freeeeek (Post 1222201)
It's actually pretty ugly.
Madj tried to hard to make that tileset (I believe he was the one who made it)

Also, why are servers always trying to get a hold of Madj's work? Hire a damn
GFX artist.

Becuse his work is great lol. Honestly it looks better then anything on any other modern server or hell any server really I love it personally but thats just my 2 cents.

lancelot9 09-26-2006 12:29 AM

Madj was a great graphic artist and i really enjoyed working with him...
i wouldnt let his stuff go to waste.. why would I

and we arent always trying to get our hands on Madj's work.. we already have our hands on it all. Hes a good friend of mine thats how it goes, same with me to him.

zim5354 09-26-2006 02:56 AM

Quote:

Originally Posted by lancelot9 (Post 1222324)
Madj was a great graphic artist and i really enjoyed working with him...
i wouldnt let his stuff go to waste.. why would I

and we arent always trying to get our hands on Madj's work.. we already have our hands on it all. Hes a good friend of mine thats how it goes, same with me to him.

Yea working with him was great.

Bl0nkt 09-26-2006 03:14 AM

Quote:

Originally Posted by KuJi (Post 1221530)
Hey.. who is ready to see the script of outbreak by hachi?

You are in NO position to EVER EVER talk about scripting.. and you must not know me because I just work 24/7 to not profit myself on guns to kill others k? And I already said I didn't make majority of it... Rapid did.

PHP Code:

function onActionServerside(mode) {
  if (
mode == "TurnZombie") {
    if (
params[1] != "default") {
    }
  }


What was the point of putting mode there? You should have just used params[0] or:

PHP Code:

function onActionServerSide(mode)
{
  switch (
mode)
  {
    case 
"TurnZombie";
    {
      
// BLAH
      
break;
    }
  }


And theres tons more in there too =p.

Hey.. also whats timevar?

AND EVEN BETTER:

PHP Code:

//#CLIENTSIDE
function onCreated() { 
  if (
player.ismale)
    
this.zombieheads = {{"head222.png""cynober"}, {"head11.gif""white"}, {"head257.png""gray"}, {"head302.png""gray"}};
  else
    
this.zombieheads = {{"head306.gif""cynober"}};
  
  
this.levelslist = {
  
"era_event-rooftopsred-1.nw"
  
"era_event-rooftops2.nw"
    
"era_event-rooftopsred-2.nw"
    
"era_event-rooftopsred-3.nw"
    
"era_event-rooftopsred-4.nw"
    
"era_event-rooftopsred-5.nw"
    
"era_event-rooftopsred-6.nw"
    
"era_event-rooftopsred-7.nw"
    
"era_event-rooftopsred-8.nw"
    
"era_event-rooftopsred-9.nw"
    
"era_event-rooftopsred-library.nw"
    
"era_event-rooftopsred-elevator.nw"
    
"era_event-rooftops3.nw"
    
"era_event-rooftops2a.nw"
    
"era_event-rooftops2b.nw"
    
"era_event-rooftopsblack-1.nw"
    
"era_event-rooftopsblack-2.nw"
    
"era_event-rooftopsblack-3.nw"
    
"era_event-rooftopsblack-4.nw"
    
"era_event-rooftopsblack-5.nw"
    
"era_event-rooftopsblack-6.nw"
    
"era_event-rooftopsblack-7.nw"
    
"era_event-rooftopsblack-8.nw",
    
"era_event-rooftopsblack-moffice.nw"
    
};
    
    
  
triggeraction(00"serverside""*Outbreak""startgame");
  
triggeraction(00"serverside""*Outbreak""transfer"this.levelslist);
  
  
onTimeout();


So you double-trigger to the server on the creation of the weapon (and you should use:
PHP Code:

triggerserver("gui"this.name"startgame"); 

And on top of that why didn't you just do:
PHP Code:

if (player.level.starts("era_event-rooftops"))
{


Heres another good one:
PHP Code:

  if (mode == "eliminate") {
    
player.addMessage("Eliminated by" SPC params[1] @ ".""b"0);
    
updateEliminates(params[1], player.account);
    
player.guild "";
    
setlevel2("era_present_00-00.nw"7.546);
    
client.freeze 0;
    
onActionServerside("remove");
  } 

Calling it's own function.. genious!

1.
I used "mode" to classify the "mode" the action is going through. Starting the game, ending the game, removing the weapon, etc...

Simple as that.


2.
I used a level list in an array since I was considering making that mansion that was in SR into part of the event. The level names in it had no specific order or similarity.



3.
Yeah, I called the "remove" function in its own triggeraction, considering I wanted to perform everything that happened in that particular block. Sure beats the hell out of random code stacking.

Btw, you spelled genius wrong.

KuJi 09-26-2006 03:17 AM

Quote:

Originally Posted by Bl0nkt (Post 1222352)
1.
I used "mode" to classify the "mode" the action is going through. Starting the game, ending the game, removing the weapon, etc...

Simple as that.


2.
I used a level list in an array since I was considering making that mansion that was in SR into part of the event. The level names in it had no specific order or similarity.



3.
Yeah, I called the "remove" function in its own triggeraction, considering I wanted to perform everything that happened in that particular block. Sure beats the hell out of random code stacking.

Btw, you spelled genius wrong.


ogod... you totally missed my points. Now you think the codes efficient.. GENIUSNESS!

1) You are saying you used mode.. right? Why didn't you just do params[0].. or a switch statement.

2) You could have made the level list on the serverside the whoel time.. and just made the level list consist of a levelstarts for each.

3) I doubt you can call the function your currently in (calling itself). You should have made a seperate function for it.

lancelot9 09-26-2006 03:31 AM

well i have no idea what either of you are talking about if that makes ya feel better

killerogue 09-26-2006 03:57 AM

Quote:

Originally Posted by lancelot9 (Post 1222324)
Madj was a great graphic artist and i really enjoyed working with him...
i wouldnt let his stuff go to waste.. why would I

and we arent always trying to get our hands on Madj's work.. we already have our hands on it all. Hes a good friend of mine thats how it goes, same with me to him.

According to everything Lance has told me personally, and having talked with one of them Madj was a great as graphic artist and Gman was awesome as well. Either way...Lance is an amazing GFX artist, Madj is amazing. Frankie according to learning scripting that's great. But you really have no clue what you're talking about. z.z

k0rupt_ed 09-26-2006 04:46 AM

I love how people on era come on a graal x thread and bash it. Its so immature. Especialy you Haichi, your the top dog of the immaturity gang, you realy need to stop worrying about others and worry how yours is going down the tube. Also you say I say this because I get free stuff? The hell are you talking about, gx isn't corrupted as era is, I make my earning like every other staff member and regular member on the server, please get real.

zim5354 09-26-2006 04:51 AM

it actually is funny they yell at anyone from GX that post on a Era thread but then they go flame GX.

KuJi 09-26-2006 05:05 AM

Quote:

Originally Posted by zim5354 (Post 1222381)
it actually is funny they yell at anyone from GX that post on a Era thread but then they go flame GX.

Profile me.. I got an infraction for flaming Era and saying GX in there thread.. but they go and say Era in my thread.. SKYLD INFRACTION 4 HACHI!

Crono 09-26-2006 02:13 PM

GX should have it's own subforum, that way this forum would spark up with flame wars between GX and Era. PERFECT FOR ACTIVITY AND FUN! plzplzplz

zim5354 09-26-2006 02:43 PM

Quote:

Originally Posted by Gerami (Post 1222438)
GX should have it's own subforum, that way this forum would spark up with flame wars between GX and Era. PERFECT FOR ACTIVITY AND FUN! plzplzplz

Every decent PW should get a subform I would say. But if they would stop flaming this playerworld it would be ok.

MysticalDragon 09-26-2006 03:23 PM

To me it seems like alot like there scared!Look how Zodiac brought down Malorias player account.I think there afraid that if GraalX is released the same results would apply, but hey thats my opinion.

k0rupt_ed 09-26-2006 08:04 PM

Just cuz its modern it automaticly refers to era.. please give me a break. Era had its time, now its ours.


All times are GMT +2. The time now is 01:39 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.