Graal Forums  

Go Back   Graal Forums > Graal V6 forums > Your opinion
FAQ Members List Calendar Search Today's Posts Mark Forums Read

Closed Thread
 
Thread Tools Search this Thread Rate Thread Display Modes
  #1  
Old 05-28-2008, 02:56 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Thanks for the offer Robin, but I have done enough and I might also say too much testing on this already. It just sucks. Think about commands like /itemtrade on Era. It's asking for the account to trade to (or did so in the past). Nobody wants to use Graalxxxxxx accounts for that, but if people don't have a community name I also have to code something that allows people to put both account and community name. That's just ****in complicated.
  #2  
Old 05-28-2008, 03:17 PM
Robin Robin is offline
The secret of NIMH
Robin's Avatar
Join Date: Apr 2005
Location: Wales, UK
Posts: 515
Robin will become famous soon enough
Send a message via AIM to Robin
Quote:
Originally Posted by Chompy View Post
1. You can't use findplayer() on communitynames..
2. Old accounts before the comunitynames will get their community name set to their account so account == communityname in their case
1. findplayerbycommunityname(str) returns object
2. What about new accounts?
__________________

  #3  
Old 05-28-2008, 03:53 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
Quote:
Originally Posted by Crow View Post
Thanks for the offer Robin, but I have done enough and I might also say too much testing on this already. It just sucks. Think about commands like /itemtrade on Era. It's asking for the account to trade to (or did so in the past). Nobody wants to use Graalxxxxxx accounts for that, but if people don't have a community name I also have to code something that allows people to put both account and community name. That's just ****in complicated.
I always use something like this or something :o
PHP Code:
  a pl.communityname;
  if (
== 0pl.account;
  else if (
== "guest"pl.account
so..

PHP Code:
function checkPlayer(plyr) {
  
temp.findplayer(plyr);
  if (
== 0findplayerbycommunityname(plyr);
  if (
== 0) return 0;
  return 
1;

something like that would do it, but I haven't tested it though..

Quote:
Originally Posted by Robin View Post
1. findplayerbycommunityname(str) returns object
2. What about new accounts?
1. You stated that we could just use communityname where we used accounts, not true as I stated that you can't use findplayer() and that has been used since gs2 came out. findplayerbycommunityname() was added some weeks after the communitynames came out because of complaints in the scripting forum..

2. New accounts can choose their own communityname once logged on graalonline.com and then by editing their profile from there if I recall.

I would like findplayer() to work with both findplayerbycommunityname() is too long.. and I don't like to make something like

PHP Code:
public function findcommunityplayer(a) {
  return 
findplayerbycommunityname(a);

or something like that..
__________________
  #4  
Old 05-28-2008, 04:21 PM
Robin Robin is offline
The secret of NIMH
Robin's Avatar
Join Date: Apr 2005
Location: Wales, UK
Posts: 515
Robin will become famous soon enough
Send a message via AIM to Robin
Quote:
Originally Posted by Chompy View Post
PHP Code:
function checkPlayer(plyr) {
  
temp.findplayer(plyr);
  if (
== 0findplayerbycommunityname(plyr);
  if (
== 0) return 0;
  return 
1;

Jesus chompy what are you doing to me man, you scared the crap out of me.

Before you edited your post I had this in the quick reply box:

PHP Code:
function _getPlayer(pl) {
  
temp.findplayerbycommunityname(pl);
  if (
temp.== 0) {
    
temp.findplayer(pl);
    if (
temp.== 0) {
      return 
0;
    } else {
      return 
temp.p;
    }
  } else {
    return 
temp.p;
  }

[EDIT]
Actually that can probably be optimised:

PHP Code:
function _getPlayer(pl) {
  
temp.findplayerbycommunityname(pl);
  return 
== findplayer(pl) : p;

[/EDIT]
__________________

  #5  
Old 05-28-2008, 03:32 PM
blazeingonix blazeingonix is offline
† Ðяΰм & βâsş †
blazeingonix's Avatar
Join Date: Apr 2007
Location: PlayBoy Mansion
Posts: 537
blazeingonix is an unknown quantity at this point
Send a message via MSN to blazeingonix
Lot of accounts with Graal1349595 , Graa19394 and i can't remember who they're this suck .
__________________
  #6  
Old 05-28-2008, 05:00 PM
Robin Robin is offline
The secret of NIMH
Robin's Avatar
Join Date: Apr 2005
Location: Wales, UK
Posts: 515
Robin will become famous soon enough
Send a message via AIM to Robin
two is the smallest amount of checks but if you notice it only does one if statement instead of two, hence optimised (although not by much)
__________________

  #7  
Old 05-28-2008, 05:16 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by Robin View Post
two is the smallest amount of checks but if you notice it only does one if statement instead of two, hence optimised (although not by much)
Still needs Chompsters "guest" check included, thats really important. Chompy, yes, I'm using something similar. Still annoying me thinks.
  #8  
Old 05-28-2008, 05:17 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
Quote:
Originally Posted by Robin View Post
two is the smallest amount of checks but if you notice it only does one if statement instead of two, hence optimised (although not by much)
There's an 'else' in there though

return p == 0 ? findplayer(pl) : p
if (p == 0) return findplayer(pl) else return p;
__________________
  #9  
Old 05-28-2008, 06:16 PM
Frankie Frankie is offline
xChugxLifex
Frankie's Avatar
Join Date: Feb 2008
Location: New York
Posts: 1,610
Frankie is a jewel in the roughFrankie is a jewel in the rough
Send a message via AIM to Frankie Send a message via MSN to Frankie
I honestly don't see what potential Stefan/Unix saw in this dumb account system.
__________________
*Sum41Freeeeek
*Frankie
  #10  
Old 05-28-2008, 06:40 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by Chompy View Post
There's an 'else' in there though

return p == 0 ? findplayer(pl) : p
if (p == 0) return findplayer(pl) else return p;
Those two lines equal.


Quote:
Originally Posted by Frankie View Post
I honestly don't see what potential Stefan/Unix saw in this dumb account system.
Original idea was that trials can't take "good" account names anymore but still keep what they have done while playing without a community name.
  #11  
Old 05-29-2008, 08:42 PM
Frankie Frankie is offline
xChugxLifex
Frankie's Avatar
Join Date: Feb 2008
Location: New York
Posts: 1,610
Frankie is a jewel in the roughFrankie is a jewel in the rough
Send a message via AIM to Frankie Send a message via MSN to Frankie
Quote:
Originally Posted by Crow View Post
Original idea was that trials can't take "good" account names anymore but still keep what they have done while playing without a community name.
like everyone else has been saying.. I would doubt 2 people could have the same community name, so this system is just useless.

I thought they already purged (lack of a better word?) old accounts that were not used. This Frankie account was registered a long time ago. I recently took it about 1 - 2 years ago.
__________________
*Sum41Freeeeek
*Frankie
  #12  
Old 05-28-2008, 06:57 PM
Robin Robin is offline
The secret of NIMH
Robin's Avatar
Join Date: Apr 2005
Location: Wales, UK
Posts: 515
Robin will become famous soon enough
Send a message via AIM to Robin
Note the nested if in the if statement in my other post. I saved amount of if statements x 2.

ANYWAY, Back to topic, Why don't they remove trials completely, you have a guest account, and then when you sign up properly you can sign up a proper account name?

The graal14289452359234534258234905839024589239045 crap is really awful.
__________________

  #13  
Old 05-28-2008, 07:25 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by Robin View Post
Note the nested if in the if statement in my other post. I saved amount of if statements x 2.

ANYWAY, Back to topic, Why don't they remove trials completely, you have a guest account, and then when you sign up properly you can sign up a proper account name?

The graal14289452359234534258234905839024589239045 crap is really awful.
Eh, trials are removed, when I said trial I meant guests. Actually, yea, doing that wouldn't be a problem at all. I mean, people could register custom account names for years. Why not now? This was never a problem, your account is not your nickname or something.
  #14  
Old 05-29-2008, 01:00 AM
Robin Robin is offline
The secret of NIMH
Robin's Avatar
Join Date: Apr 2005
Location: Wales, UK
Posts: 515
Robin will become famous soon enough
Send a message via AIM to Robin
Quote:
Originally Posted by HoudiniMan View Post
i put [a noob] in a blender once....

yeah, there's no sauce in them
__________________

  #15  
Old 05-29-2008, 06:55 AM
TSAdmin TSAdmin is offline
Forum Moderator
TSAdmin's Avatar
Join Date: Aug 2006
Location: Australia
Posts: 1,980
TSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud of
My biggest issue with the Graalxxxxxx accounts, mixed with the Commuinty Names is the fact that when someone (EG: Litter [Andrew] or Yocas [Another Graal staff on Era]) has an RC, it's a pain in the arse when they prefer to use /opencomments, directly, and it opens the comments of their Graal account, and if you want to add work for them, you have to go into the Server Options to figure out which one is which, and who is who, etc.

People who choose their community name can't choose a name already taken by another account or community name, which works exactly the same as accounts. Sure, after playing for a short while, they can choose a name, but it really shouldn't matter when they choose the "Name" they want, whether it be an account name they get stuck with before playing, or if they choose it later. It lacks uniqueness, for those who decide not to choose a community name, so when I see "Graalxxxxxx did something", I have to think about "Well, who the heck is THAT???", but that's just me, since the day I started Graal, I've generally used "Show Account instead of nick on playerlist", so everyone looks the same
__________________
TSAdmin (Forum Moderator)
Welcome to the Official GraalOnline Forums! Where sharing an opinion may be seen as a declaration of war!
------------------------
· User Agreement · Code of Conduct · Forum Rules ·
· Graal Support · Administrative Contacts ·
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 02:27 PM.


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