Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 06-24-2004, 02:52 PM
WanDaMan WanDaMan is offline
Master Tux
WanDaMan's Avatar
Join Date: Aug 2002
Location: England, United Kingdom
Posts: 5,571
WanDaMan is a jewel in the roughWanDaMan is a jewel in the rough
Send a message via MSN to WanDaMan
A little help with with()

What I'm trying to do is to get some strings for the specified player, using with (getplayer())

I've tried many many different ways but nothing is working. I've tried setting this.strings, thiso.strings, level.strings. I just don't understand why it's not working.

NPC Code:

WAY 1------------------------------------------------
if (actionserverside) {
if (strequals(#p(0),load)) {
with (getplayer(#p(1))) { // getting the strings from
setstring thiso.test,#F,#s(client.hp);
}
with (getplayer(#p(2))) { // the account that is trying to get the strings
setstring client.test,#s(thiso.test);
}
}
}
WAY 2------------------------------------------------
if (actionserverside) {
if (strequals(#p(0),load)) {
with (getplayer(#p(1))) {
setstring this.test,#F,#s(client.hp);
}
}
}
// access it from clientside
WAY 3------------------------------------------------
if (actionserverside) {
if (strequals(#p(0),load)) {
with (getplayer(#p(1))) {
setstring thiso.test,#F,#s(client.hp);
}
setstring this.test,#s(thiso.test);
}
}
// access this.test later



Anyone help?
__________________
V$:CONFL16T
Reply With Quote
 


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 05:36 PM.


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