The following warnings occurred:
Warning [2] Use of undefined constant SAPI_NAME - assumed 'SAPI_NAME' (this will throw an Error in a future version of PHP) - Line: 3388 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3388 errorHandler->error
/showthread.php 116 build_archive_link
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/inc/functions.php 3324 build_forum_breadcrumb
/showthread.php 195 build_forum_breadcrumb
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/showthread.php 195 build_forum_breadcrumb






Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sphere msgs.scp
Author Message
Russian
Journeyman
*

Posts: 75
Likes Given: 4
Likes Received: 2 in 2 posts
Joined: Jul 2012
Reputation: 0



Post: #1
Sphere msgs.scp
Hello.
Sphere msgs.scp have a DEFMESSAGEs for one language.
How i can set two DEFMESSAGE for various languages?
07-16-2012 02:35 AM
Find all posts by this user Like Post Quote this message in a reply
Shidhun
Journeyman
*

Posts: 59
Likes Given: 5
Likes Received: 3 in 3 posts
Joined: Jul 2012
Reputation: 1



Post: #2
RE: Sphere msgs.scp
I think that is not possible just with changing this defmessages within the script.

You could change every Defmessage into a Cliloc. But you would have to distribute two different Clilocs to your players .

Of course you need to create this cliloc-files first
07-16-2012 02:55 AM
Find all posts by this user Like Post Quote this message in a reply
Skul
Master
**

Posts: 413
Likes Given: 0
Likes Received: 19 in 15 posts
Joined: Jun 2012
Reputation: 9



Post: #3
RE: Sphere msgs.scp
@Russian, //comment the defmessage and recode it through it's proper aspect and use account.lang to retrieve the player's language.

"I ask a question to the answer I already know."

Marchadium :: http://www.marchadium.ca/ :: Join us!
07-16-2012 05:42 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Russian
Journeyman
*

Posts: 75
Likes Given: 4
Likes Received: 2 in 2 posts
Joined: Jul 2012
Reputation: 0



Post: #4
RE: Sphere msgs.scp
account.lang where is it?
07-18-2012 03:45 AM
Find all posts by this user Like Post Quote this message in a reply
Wap
Journeyman
*

Posts: 138
Likes Given: 6
Likes Received: 7 in 6 posts
Joined: Mar 2012
Reputation: 3

UORPG.net

Post: #5
RE: Sphere msgs.scp
Russian, what version of client do you use?

Account.lang is in the account block:
[x]
...
LANG=RUS
But... I don't know a way to make sysmessages on two languages, using this(excluding overriding internal action-scripts, but it is funny).
(This post was last modified: 07-18-2012 08:54 AM by Wap.)
07-18-2012 07:10 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Shaklaban
Master
**

Posts: 378
Likes Given: 0
Likes Received: 1 in 1 posts
Joined: Mar 2012
Reputation: 8

DOT

Post: #6
RE: Sphere msgs.scp
Im using defnames and functions for multi language support, but i never replace hardcoded ones since everyone knows them which plays sphere. Little examples from my shard:

PHP Code:
[defname language_support]
dil_arkadas_listeniz_dolu_0 Arkadaş listeniz dolu.
dil_arkadas_listeniz_dolu_1 Your friend list is full.

[function 
lng]
return <
account.dtag0.lang// im just giving them tag.lang with gump, they selecting their languages

[function example]
sysmessage <def.dil_arkadas_listeniz_dolu_<lng>>

[function 
smsg_arkadas_teklifi_engellemis_0]
sysmessage <argsarkadaşlık tekliflerini engellemiş.

[function 
smsg_arkadas_teklifi_engellemis_1]
sysmessage <argshas blocked friend requests.

[function 
example_2]
ref1=<argn1//uid of an object
sysmessage <smsg_arkadas_teklifi_engellemis_<lng> <ref1.name>> 

I never think about clilocs since connection which used by sphere in nothing, and its not useful to edit cliloc files with every script change.
(This post was last modified: 07-18-2012 06:13 PM by Shaklaban.)
07-18-2012 01:37 PM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Abuelox
Journeyman
*

Posts: 64
Likes Given: 0
Likes Received: 7 in 7 posts
Joined: Apr 2010
Reputation: 0

Alteria Games

Post: #7
RE: Sphere msgs.scp
How could operate in dialogs and names of objects? I cannot find the way or better said, I have no much idea ... , could help me? Thank you very much!

ERROR in console:
Code:
23:16:ERROR:(funciones_scripts.scp,5)Can't resolve <account.dtag0.lang>

and this is the function:
Code:
[function lng]
return <account.dtag0.lang>
(This post was last modified: 11-15-2012 08:20 AM by Abuelox.)
11-15-2012 06:12 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Shaklaban
Master
**

Posts: 378
Likes Given: 0
Likes Received: 1 in 1 posts
Joined: Mar 2012
Reputation: 8

DOT

Post: #8
RE: Sphere msgs.scp
in dialogs you need to use <src.lng> because default uid can be an item or npc in dialog. also in message function you need to use <src.lng>.
11-16-2012 01:20 PM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Skul
Master
**

Posts: 413
Likes Given: 0
Likes Received: 19 in 15 posts
Joined: Jun 2012
Reputation: 9



Post: #9
RE: Sphere msgs.scp
(11-15-2012 06:12 AM)Abuelox Wrote:  How could operate in dialogs and names of objects? I cannot find the way or better said, I have no much idea ... , could help me? Thank you very much!

ERROR in console:
Code:
23:16:ERROR:(funciones_scripts.scp,5)Can't resolve <account.dtag0.lang>

and this is the function:
Code:
[function lng]
return <account.dtag0.lang>

account.lang is stored as a string, so using dtag0 won't resolve if it is set. try this function rather than the function you posted:
Code:
[function lng]
if (<isplayer>)
  if !(<isempty <account.tag.lang>>)
    return <account.tag0.lang>
  elseif !(<isempty <account.lang>>)
    return <account.lang>
  endif
endif
return 0
Sometimes account.lang and account.tag.lang are not set, this happens if someone logs in but never types any text in-game, happens so it's good to 'check' if someone has the value set on their account or not. Looks like you use account.tag.lang so I left that in there.

"I ask a question to the answer I already know."

Marchadium :: http://www.marchadium.ca/ :: Join us!
11-16-2012 01:24 PM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
xwerswoodx
Journeyman
*

Posts: 86
Likes Given: 4
Likes Received: 7 in 4 posts
Joined: Jun 2012
Reputation: 0

UoMMO

Post: #10
RE: Sphere msgs.scp
Code:
[Function language]
IF (<isplayer>)
  IF (<isempty <account.lang>>)
  ACCOUNT.LANG=ENG
  SERV.ACCOUNT UPDATE
  ENDIF
  RETURN <ACCOUNT.LANG>
ENDIF
RETURN 0

[Defname d_language_tools]
language_too_away_ENG=You are too away
language_too_away_TRK=Çok uzaksınız
language_too_away_RUS=...

In the dialog or sysmessage;
SYSMESSAGE <language_too_away_<src.language>>
DTEXT - - 0 <language_too_away_<src.language>>
(This post was last modified: 06-23-2013 05:48 AM by xwerswoodx.)
06-22-2013 10:43 PM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)