Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Eudemons Online > EO PServer Hosting
You last visited: Today at 12:04

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Help]Welcome Message

Discussion on [Help]Welcome Message within the EO PServer Hosting forum part of the Eudemons Online category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Apr 2009
Posts: 29
Received Thanks: 1
[Help]Welcome Message

how to translate / change this Welcome Message because as you can see its not even in Chinese or English the letters look like boxes !! ..does this message have like an ID in cq_action so i can look for it and change it ??

fifastreet123456 is offline  
Old 01/27/2011, 19:16   #2
 
elite*gold: 0
Join Date: Oct 2008
Posts: 726
Received Thanks: 330
hmmmm, the Action should be 2000800

If you dont have the Main Welcome page try adding this to your action

Quote:
2000800 2000801 0 1001 0 prompt_ver = 3963
2000801 2000802 0 130 0 Welcome~to~Untoldlegends~brand~new~EO~private~serv er.
2000802 2000803 0 130 0 1)NPC~Fully~Working.
2000803 2000804 0 130 0 2)Legion~War~Every~friday~at~9.30PM.
2000804 2000805 0 130 0 3)PK~tour~every~saturday~9.00PM.
2000805 2000806 0 130 0 Server~need~donation~to~keep~services~online.
2000806 2000807 0 130 0 To~Donate~Please~visit~our~Website

2000807 2000808 0 130 0 at
2000808 2000809 0 130 0
2000809 2000810 0 130 0
2000810 2000811 0 130 0
2000811 2000812 0 130 0
2000812 0 0 131 0
Obv Edit the text and then try comment back on if it works thanks
stedabest321 is offline  
Thanks
1 User
Old 01/27/2011, 19:31   #3
 
elite*gold: 0
Join Date: Apr 2009
Posts: 29
Received Thanks: 1
Quote:
Originally Posted by stedabest321 View Post
hmmmm, the Action should be 2000800

If you dont have the Main Welcome page try adding this to your action



Obv Edit the text and then try comment back on if it works thanks
well , i don't think i understood what you said i only wanna change that message with the "boxes" in it .. and i searched for this ID 2000800 but didn't really get anything look what i got ..

fifastreet123456 is offline  
Old 01/27/2011, 19:40   #4
 
elite*gold: 0
Join Date: Oct 2008
Posts: 726
Received Thanks: 330
Hmm, well The bottom one you need to add info soo you need the other stuff in and it should stop the other box and replace it with a better one just try Re adding the code i give u and then ty " make sure you back up be4 trying this " as im testing the Coding on it now trying to do somthign secret and it keeps crashing when i make an account but try that im sure it will work Just coppy the code i give u

and re add it if it says there already one there Delete the old one With the 1st ID 20000800 and Replace with the new one and then try to make a new account if that dosnt work msg m back and al loo into it for you
stedabest321 is offline  
Thanks
1 User
Old 01/27/2011, 20:12   #5
 
elite*gold: 0
Join Date: Apr 2009
Posts: 29
Received Thanks: 1
first of all these codes your giving me are for the Update box that popps up when you log in !!! I DON'T NEED that i already have it !! and still my problem wasn't fixed yet ! i believe you misunderstood me and what i want to do ..
fifastreet123456 is offline  
Old 01/27/2011, 20:31   #6
 
elite*gold: 0
Join Date: Oct 2008
Posts: 726
Received Thanks: 330
sorry :/
stedabest321 is offline  
Thanks
1 User
Old 01/27/2011, 20:43   #7
 
TiGeRkiwi32's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 88
Received Thanks: 74
fifa:
just try search all in cq_action and you translate all chinese words in there you might see something usefull there...You can still use a program called NJStar communicator. It worked fine during my testing. You can get it from NJStar Communicator - Free software downloads and software reviews - CNET Download.com
TiGeRkiwi32 is offline  
Thanks
1 User
Old 01/27/2011, 21:00   #8
 
elite*gold: 0
Join Date: Oct 2008
Posts: 726
Received Thanks: 330
Thats not his problem how can he transilate boxes if he dosnt have the cq_action to get to the line? but most likely the person has tryed entering chinese Text and it bv didnt work

Sorry bout my english lmao im from england and my engish is horrible atm i aint slept in over 24 hours lmaooo any ways

Try Searching a box ? like hmmmm When you register to the game and then log in and create an account if u enter somthing like this 这这这这这这这这这这这

it will give u Boxes try to coppy it and search the Box on the Cq_action see what that does for you
stedabest321 is offline  
Thanks
1 User
Old 01/31/2011, 20:48   #9
 
elite*gold: 0
Join Date: Apr 2009
Posts: 29
Received Thanks: 1
dang i still can't get it , i can't find the Appropriate ID in cq_action !! any ideas people ??
fifastreet123456 is offline  
Old 01/31/2011, 23:36   #10
 
King_Arthur's Avatar
 
elite*gold: 246
Join Date: Jan 2008
Posts: 1,712
Received Thanks: 895
#1 Look for the lines after 2000800 as stated by stedabest321. In cq_action things are going to be spread out over many lines. You should get used to looking at the "context" of what you are searching for.

#2 Login as a [PM] and look at the action IDs that pop up in the chat. Many times what you are looking for will pop up for you.
King_Arthur is offline  
Thanks
1 User
Old 02/01/2011, 02:55   #11
 
funhacker's Avatar
 
elite*gold: 20
Join Date: Sep 2007
Posts: 1,767
Received Thanks: 1,741
Follow the ids from 1,000,000 (in the cq_action).
It should get to the message of what you're looking for.

Or run the following script:
Code:
select param from
cq_action
where
id >= 1000000 and 
id <= 1000010 and
type = 126;
If this returns a result (only 1 result) then run this script:
Code:
update
cq_action
set
param = "INSERT YOUR MESSAGE HERE DO NOT REMOVE QUOTATION MARKS"
where
id >= 1000000 and
id <= 1000010 and
type = 126;
funhacker is offline  
Thanks
5 Users
Old 02/01/2011, 14:10   #12
 
TiGeRkiwi32's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 88
Received Thanks: 74
some editing need you edit it using manually from what i read its a good to do manually then using transaltor or whatever application because its will make your server crash faster than you edit it manually...yes you will take long time to translate right?but its better because you learn from basic edit it
TiGeRkiwi32 is offline  
Thanks
2 Users
Old 02/01/2011, 14:47   #13
 
elite*gold: 0
Join Date: Oct 2008
Posts: 726
Received Thanks: 330
Yeah thats kinda how i done the main Login thing but it looks chinese Text as the Database dosnt udner stand it it either turns it into ?????????????????????????????????????
or Blocks
stedabest321 is offline  
Thanks
1 User
Old 02/01/2011, 15:48   #14
 
elite*gold: 0
Join Date: Apr 2009
Posts: 29
Received Thanks: 1
hahaha i did it lol it's SOOOOOO easy and simple , thnx to everyone i didn't understand what all of you were saying to me , and most of it was wrong but the point is that it has been changed .. im so smart *****
fifastreet123456 is offline  
Old 02/01/2011, 17:26   #15
 
elite*gold: 0
Join Date: Oct 2008
Posts: 726
Received Thanks: 330
Hmmm you should accualy Learn how to respect others for trying to help ....
stedabest321 is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
Whats the code so when you enter the server a message will appear were the /c message
04/04/2010 - CO2 Private Server - 15 Replies
Ok so this is a darn NOOB ass question ok so I have this in my teleport with all my other code for login GC.LocalMessage(2000, "Welcome to TestCo Coded By Paralyzer!"); GC.LocalMessage(2000, "The server is still being fixed. Anyway, We want you to enjoy this server."); GC.LocalMessage(2000, "If you want to revive here while being blessed, you have to type /rh or /revivehere."); GC.LocalMessage(2000, "Also if somehow you died, you...



All times are GMT +1. The time now is 12:04.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.